通过jQuery AJAX获取XML时的parseerror

前端之家收集整理的这篇文章主要介绍了通过jQuery AJAX获取XML时的parseerror前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想通过jQuery AJAX提取RSS提要,但每次我都这样做,我得到一个parsererror.我的Feed比较复杂(使用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>

解决方法

确保使用application-RSS xml或text / xml的Content-Type标头提供文档.
原文链接:https://www.f2er.com/jquery/181377.html

猜你在找的jQuery相关文章