我们如何在 Phonegap 中使用ASMX Web 服务?使用ASMX网络服务是否支持所有移动操作系统,如 Android、Windows Phone 和 iOS?
问问题
998 次
1 回答
0
尝试这个
$.ajax({
url: Your_webservice_url,
type: "GET",
data: {
ModifiedSince: modifiedSince
},
dataType: "json",
success: function(data) {
console.log("The server returned " + data.length);
//Play with the received json data.
},
error: function(model, response) {
alert("Web service error: " + response.responseText);
}
});
于 2013-06-20T13:33:59.270 回答