jQuery ajax"错误",状态0,没有响应文本,但是篡改数据显示它是成功的响应200?

时间:2015-06-09 22:07:36

标签: javascript jquery ajax xmlhttprequest cross-domain

这是我的代码:

$.ajax({
    url: "https://api.instagram.com/v1/users/self/feed?access_token=" + TOKEN_HERE,
    type: "GET",
    processData: false,
    dataType: "text",
    success: function(data) {

        console.log(data);
    },
    error: function(xhr, status, data) {
        console.log("err", xhr.responseText, xhr.statusCode, data, status);
    }
});

打印:

"err" "" 0 "" "error"

篡改数据显示:

enter image description here

我甚至尝试过简单的Ajax,没有jQuery,它做了同样的事情!

我看到这个问题,但显然与我的问题不同:jquery ajax error {"readyState":0,"responseText":"","status":0,"statusText":"error"} 因为我在w3schools html模拟器上进行了测试,结果相同。所以它不能干扰我的异步代码。

谢谢..

0 个答案:

没有答案