我想询问一些使用 jquery mobile 调用 json webservices 的运行示例/教程。
我正在尝试开发我的第一个移动应用程序,但还没有找到一个富有成效的例子。
谢谢,
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> });
首先,我会查看官方文档中的示例:http: //api.jquery.com/jQuery.getJSON/和http://api.jquery.com/jQuery.post/
这应该就是你所需要的。