我想在Android模擬器上使用以下代碼調用本地服務。 Bellow是調用服務的JavaScript代碼。PhoneGap + Android模擬器+ Sencha Touch
Ext.Ajax.request({
url: "http://10.0.2.2/MyService.svc/Authenticate",
jsonData: data,
headers: {
"X-Authorization-Elf" : SessionManager.getCurrentSessionToken()
},
scope: scope,
success: function (response, options) {
},
failure: function(response, options) {
},
callback: function (options, success, response) {
// Hide the loading message box
Ext.Viewport.setMasked(false);
}
});
呼叫未達到服務。應用程序流將進入失敗狀態,狀態爲0,響應文本爲空。
請給我建議的方法。