谁能告诉我, 如何使用返回SOAP对象的PhoneGap / HTML5 / Jquery调用WCF Web服务? 我想从phonegap应用程序调用WCF服务。
答案 0 :(得分:0)
试试这个。可能这会对你有帮助。因为我已经使用这个
完成了网络服务 <script type="text/javascript">
$(function () {
var url = "http://localhost/newed/WebService.asmx/GetList?format=json";
$.ajax({
contentType: "application/json; charset=utf-8",
url: url,
dataType: "jsonp",
success: function (r) {
var i = 0;
for (i = 0; i < r.d.length; i++) {
alert(r.d[i]["firstName"].toString());
}
},
error: function (xr, msg, e) { debugger; alert(e); }
});
});