我正在尝试在 Android Emulator 上使用以下代码调用本地服务。Bellow 是调用该服务的 JavaScript 代码。
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,响应文本为空。
请建议我的方法。