这是我的代码:
$.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"
篡改数据显示:
我甚至尝试过简单的Ajax,没有jQuery,它做了同样的事情!
我看到这个问题,但显然与我的问题不同:jquery ajax error {"readyState":0,"responseText":"","status":0,"statusText":"error"} 因为我在w3schools html模拟器上进行了测试,结果相同。所以它不能干扰我的异步代码。
谢谢..