0

谁能告诉我,如何使用返回 SOAP 对象的 PhoneGap/HTML5/Jquery 调用 WCF Web 服务?我想从 phonegap 应用程序调用 WCF 服务。

4

1 回答 1

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); }
           });
       });

于 2012-11-05T08:59:06.030 回答