所以我有这个对象,当我在console.log它并在检查器中查看它看起来很好。 Object in Inspector
但是当我打印出对象的键时,我只能得到这个结果: Object Keys in Inspector
之后我打印出来的所有东西(object.value)看起来像这样:
ƒ (){return f&&(c&&!b&&(h=f.length-1,g.push(c)),function d(b){r.each(b,function(b,c){r.isFunction(c)?a.unique&&j.has(c)||f.push(c):c&&c.length&&"string"!==r.type(c)&&d(c)})}(arguments),c&&!b&&i()),this}
如何只访问" responseJSON"从第一个截图?
可能很重要的一些背景信息: 我从spotify web-api获得了对象,授权等工作都很好。
function getUserData(accessToken) {
return $.ajax({
url: 'https://api.spotify.com/v1/me/player/currently-playing',
headers: {
'Authorization': 'Bearer ' + accessToken
}
});
}