我正在使用JSONP发出api跨域请求,外部服务器以XML格式返回结果,下面是我的代码:
$.ajax({
type: "Get",
url: "http://domain.com/function?Data=1234567890",
xhrFields: {withCredentials: true},
dataType: "JSONP text xml",
contentType: "application/xml",
cache: false,
success: function(xml)
{
alert($(this).find('ResponseStatus').text());
}
});
它返回一个xml但是它会产生一个错误,说“Unexpected token<”不幸的是,我停止处理,我没有收到警报消息。有什么想法吗?
最佳
答案 0 :(得分:12)
正如上面的评论中所提到的,来自javascript的跨域xml是禁止的,除非您可以控制正在吐出XML的应用程序,并且可以使用格式化技巧来欺骗'将脚本解析为JSON的脚本。 如果你能做到这一点,那么问题就是为什么不首先只是格式化为JSON? 所以......选项
这样的事情:
// find some demo xml - DuckDuckGo is great for this
var xmlSource = "http://api.duckduckgo.com/?q=StackOverflow&format=xml"
// build the yql query. Could be just a string - I think join makes easier reading
var yqlURL = [
"http://query.yahooapis.com/v1/public/yql",
"?q=" + encodeURIComponent("select * from xml where url='" + xmlSource + "'"),
"&format=xml&callback=?"
].join("");
// Now do the AJAX heavy lifting
$.getJSON(yqlURL, function(data){
xmlContent = $(data.results[0]);
var Abstract = $(xmlContent).find("Abstract").text();
console.log(Abstract);
});
当然,在该示例中,您将恢复所有xml数据并在本地搜索 - 可以选择调整select语句以恢复您想要的内容。
希望有所帮助