0

我想询问一些使用 jquery mobile 调用 json webservices 的运行示例/教程。

我正在尝试开发我的第一个移动应用程序,但还没有找到一个富有成效的例子。

谢谢,

4

2 回答 2

0
var serviceUrl = 'http://' + _SERVER_ADDRESS + '/YOURSERVICE.svc/' + method;
    var jsonCallbackMethod = 'spycallback49328572';

    $.ajax({
        type : "GET",
        url : serviceUrl,
        jsonpCallback : jsonCallbackMethod,
        data : params,
        dataType : 'jsonp',
        timeout : 11*1000 // Necessary in order to detect not found(404) error
    })
    .done(function(response) { <success code> })
    .fail(function(xhr) { <failure code> });
于 2013-10-05T22:46:50.890 回答
0

首先,我会查看官方文档中的示例:http: //api.jquery.com/jQuery.getJSON/http://api.jquery.com/jQuery.post/

这应该就是你所需要的。

于 2013-10-05T10:17:25.063 回答