var Model= function () {
function GetData() {
// Sending the request and i am getting the response.
JsonClientScheduleCareProvider.onload = function () {
return this.responseText;
};
// error handling
JsonClientScheduleCareProvider.onerror = function (e) {
};
return {
GetApps: GetData,
}
}();
在下面的代码中,我进行了 JSON 调用。如果我得到响应,我应该sendData
用响应调用函数。
var jsonData = Model.GetApps();
if (!jsonData) {
Ti.API.warn("JsonData");
SendData(jsonData);
}
我面临的问题是在jsonData
得到我的响应之前,SendData
被调用了。只有在收到响应时,我才需要执行 SendData 函数。