我试图读取网址提供的xml数据
url:http://api.simplyhired.co.in/a/jobs-api/xml-v2/q-java/l-hyderabad/ws-10?pshid=46408&ssty=3&cflg=r
但是我没有从网址获取任何响应数据。我试过下面的代码:
var url = "http://api.simplyhired.co.in/a/jobs-api/xml-v2/q-java/l-hyderabad/ws-10?pshid=46408&ssty=3&cflg=r";
$.ajax({
url: url,
complete: function(data) {
alert(data.responseText);
}
});
当我在浏览器中打开url时,它以xml格式显示数据。即使在对网址进行编码后,问题仍然存在。
有没有更好的方法呢?
感谢。
答案 0 :(得分:0)
尝试这样的事情
$.ajax({
type: "GET",
url: "www.mysite.com/file.xml",
dataType: "xml",
success: function(xml) {
#do work here if success
}
});
如果这仍然不起作用,请注意你的网址,它有一些应编码的字符(例如编码为“%3D”的“=”)
请参阅此处了解JQuery URI编码:http://www.w3schools.com/jsref/jsref_encodeURIComponent.asp