0

我试图读取 url 提供的 xml 数据

网址:http ://api.simplyhired.co.in/a/jobs-api/xml-v2/q-java/l-hyderabad/ws-10?pshid=46408&ssty=3&cflg=r

但我没有从 url 获得任何响应数据。我尝试了以下代码:

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 格式显示数据。即使在对 url 进行编码之后,问题仍然存在。

有没有更好的方法来做到这一点?

谢谢。

4

1 回答 1

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

于 2012-10-26T07:51:46.953 回答