0

我正在尝试运行此代码以从 Android 上的 phonegap 应用程序调用 WCF 函数

我使用 firefox 的 POSTER 测试了 web 服务,并且可以正常通过,并返回正确的值(实际上它只返回 true 或 false)

function verifyAccount(username, password){
   $.ajax({
    type: "post",
    url:  "http://50.63.174.229/banknoteservice/service1.svc/verifyAccount",
    data:  JSON.stringify("{'username' : 'test' , 'password' : 'test'}"),
    contentType: "application/json",
    dataType: "json",
    success: function(msg) {    
        $("#myDiv").html(msg);
    },
    error: function(e){
        $("#myDiv").html('error');              
    }
});

}

每次我尝试在手机上运行它时,它都会在 div 中显示错误消息

4

0 回答 0