我正在使用节点js并调用Spotify API并在主体对象中接收响应,如以下代码所示:
var options = {
url: 'https://api.spotify.com/v1/me',
headers: { 'Authorization': 'Bearer ' + access_token },
json: true
};
request.get(options, function(error, res, body) {
console.log(body)
});
但是现在当我尝试在函数外部访问body对象时,我变得不确定。我认为问题在于我正在进行异步调用,因此在收到响应之前,执行了我在函数外部使用身体变量的语句。但是我对如何找到解决方案感到困惑。
感谢您的帮助
编辑:
request.get(options, function(error, res, body) {
console.log(body)
response.render('user_account.html', {
data: body
})
});
它给出了输出:
答案 0 :(得分:1)
使用诺言。
您可以尝试以下操作:
const apiCall = () => {
return new Promise((resolve, reject) => {
var options = {
url: 'https://api.spotify.com/v1/me',
headers: { 'Authorization': 'Bearer ' + access_token },
json: true
};
request.get(options, function(error, res, body) {
if(error) reject(error);
console.log(body);
resolve(body);
});
});
}
apiCall().then((body) => {
// do your things here
})
.catch((err) => console.log(err));