我收到错误但是空状态文本,这是我的代码
var ajaxUrl = 'https://graph.facebook.com/me?access_token=' + accessToken
$.ajax({
url: ajaxUrl,
dataType: 'json',
success: function(user){
alert('h');
},
error: function(xhr, ajaxOptions, thrownError){
alert(xhr.statusText);
}
});
答案 0 :(得分:0)
根据jQuery documentation,您的代码应为:
var ajaxUrl = 'https://graph.facebook.com/me?access_token=' + accessToken
$.ajax({
url: ajaxUrl,
dataType: 'json',
success: function(user){
alert('h');
},
error: function(xhr, statusText, thrownError){
alert(statusText);
}
});
也就是说,您的error
函数定义不正确。
此外,您不能从不是当前页面来自的域名的JSON进行AJAX调用...您需要使用JSONP