使用jquery& amp;是否有任何关于restful web服务的好教程和示例XML? 我对宁静的网络服务很陌生
答案 0 :(得分:1)
答案 1 :(得分:0)
这取决于您正在使用的后端技术,但jQuery的一般解决方案是使用$.ajax
:
$.ajax( {
type:'post', //Could be 'get' depending on your needs
url:'http://yoursite.com/yourwebservice',
dataType: 'xml',
success:function(data) {
//Here you have 'data' as xml.
//You can process 'data' here
}
});
希望这会有所帮助。干杯
答案 2 :(得分:0)
又一个例子
这将在页面加载时为.net webservices
进行ajax调用$(document).ready(function() {
$.ajax({
type: "POST",
url: "RSSReader.asmx/GetRSSReader",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
//the result will be in msg
}
});
});