in my application i want to isolate the Networking in one method , its very common to fetch ajax in my app. so i've put the Ti.Network.createHTTPClient() in a seperate method and i call it with a URL. then it will parse the JSON and return back the result. HOWEVER it always return back a null object.
i'm assuming it retched the end of the method before getting back from the .onload() method How can i solve that ?
function getJson(url)
{
Ti.API.info(" URL is " + url );
var jsonObject ;
var xhr = Ti.Network.createHTTPClient();
xhr.setTimeout(3000);
xhr.onload = function()
{
var jsonObject = eval('(' + this.responseText + ')');
}
xhr.open("GET" , url);
xhr.send();
Ti.API.info(" passed " );
return jsonObject;
};
