我想通过jQuery AJAX拉RSS提要,但每次这样做,都会遇到parsererror。我的提要相对复杂(使用CDATA和自定义名称空间),因此我尝试剥离返回的文档(以及一百万个其他组合),但是即使使用非常简单的文档,它仍然会失败。这是我的AJAX代码:
$.ajax({ type: 'GET', url: ..., dataType: 'xml', success: function(xml) { ... }, error: function(xhr, textStatus, error) { console.log('status: ' + textStatus); console.log(xhr.responseText); showError('an unknown error occurred while trying to fetch the feed: ' + xhr.status); } });
控制台输出:
status: parsererror <?xml version="1.0"?> <rss version="2.0"> <channel> <title>title</title> <link>link</link> <description>desc</description> <lastBuildDate>build date</lastBuildDate> <generator>gen</generator> </channel> </rss>
确保为文档提供Content-Type标头为application/rss+xml或text/xml。
Content-Type
application/rss+xml
text/xml