我发现在过去,这样的API请求会遭到破坏,因为它们不是同步的,就像David所说的那样。为了解决这个问题,我不得不将请求塞进一个承诺中,让它得到解决,类似于您的情况:
更改您的函数以包含承诺:
function getData = function() {
const url = "https://api.nasa.gov/planetary/apod?api_key=<key>"
console.log("inside get data")
return new Promise(function(resolve, reject) {
request.get(url, function (error, response, body) {
if (err) {
reject(err);
}
if (body) {
resolve(JSON.parse(body));
}
});
});
}
然后改变你的意图,使用承诺:
'GetAPOD': function () {
getData()
.then(function(body) {
let speechOutput = body;
intent_context.response.speak(speechOutput).listen(speechOutput);
intent_context.emit(':responseReady');
}
沿着这条线的东西。您需要对其进行一些操作,以确保结果按照您的意愿产生。希望这有帮助。
D