小编典典

通过jQuery AJAX获取XML时发生parseerror

ajax

我想通过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>

阅读 217

收藏
2020-07-26

共1个答案

小编典典

确保为文档提供Content-Type标头为application/rss+xmltext/xml

2020-07-26