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