gpt4 book ai didi

node.js - Alexa-app 和 request-promise 的网络问题

转载 作者:太空宇宙 更新时间:2023-11-04 03:05:12 26 4
gpt4 key购买 nike

我必须在这里遗漏一些非常简单的东西,但是这里是。

我现在刚刚开始学习 Alexa 开发,并发现了 alexa-app 模块,它似乎使 Alexa 编程变得非常简单 - 除了我遇到的这个网络问题。

我正在浏览由名为 AirportInfo 的团队提供的示例应用程序。问题区域的代码如下:

var faaHelper = new FAADataHelper();
faaHelper.requestAirportStatus(airportCode).then(function(airportStatus) {
var goodMessage = faaHelper.formatAirportStatus(airportStatus);
console.log(goodMessage);
res.say(goodMessage).send();
}).catch(function(err) {
console.log(err.statusCode);
var prompt = 'I didn\'t have data for an airport code of ' + airportCode;
console.log(prompt);
res.say(prompt).reprompt(reprompt).shouldEndSession(false).send();
});
return false;

依次调用这些函数:

FAADataHelper.prototype.requestAirportStatus = function(airportCode) {
return this.getAirportStatus(airportCode).then(
function(response) {
console.log('success - received airport info for ' + airportCode);
return response.body;
}
);
};
FAADataHelper.prototype.getAirportStatus = function(airportCode) {
var options = {
method: 'GET',
uri: ENDPOINT + airportCode,
resolveWithFullResponse: true,
json: true
};
return rp(options);
};

这对我来说看起来不错,但是当代码运行时,控制响应何时发送回设备的主 alexa-app“请求”返回时间早于预期。在调用 return rp(options) 后立即发回响应,而不是包含所选机场的预期天气信息的完整响应负载。第一个代码示例中的 .then() block 中执行的代码技能已将空响应发送回 Alexa 之后运行。这实际上让 Alexa 崩溃了,因为她说了一些关于技能错误的神秘消息。

这是我的 server.js 代码:

var AlexaAppServer = require("../index.js");
AlexaAppServer.start({
server_root: './',
port: 8080,
debug: true,
// Use preRequest to load user data on each request and add it to the request json.
// In reality, this data would come from a db or files, etc.
preRequest: function(json, req, res) {
console.log("preRequest fired");
json.userDetails = { "name": "Bob Smith" };
},
// Add a dummy attribute to the response
postRequest: function(json, req, res) {
// look for this output in the log below
console.log("postRequest fired");
json.dummy = "text";
}
});

这是显示我正在描述的这种情况的调试日志:

preRequest fired
REQUEST { method: 'GET',
uri: 'http://services.faa.gov/airport/status/dfw',
resolveWithFullResponse: true,
json: true,
simple: false,
callback: [Function: RP$callback],
transform: undefined,
transform2xxOnly: false }
postRequest fired
REQUEST make request http://services.faa.gov/airport/status/dfw
REQUEST onRequestResponse http://services.faa.gov/airport/status/dfw 200 { date: 'Fri, 24 Mar 2017 05:09:41 GMT',
server: 'Apache',

...

'access-control-allow-origin': '*',
'access-control-allow-methods': 'GET, HEAD, OPTIONS',
'version-requested': 'Any',
connection: 'close',
'transfer-encoding': 'chunked',
'content-type': 'application/json;charset=UTF-8' }
REQUEST reading response's body

...

REQUEST end event http://services.faa.gov/airport/status/dfw
REQUEST has body http://services.faa.gov/airport/status/dfw 517
REQUEST emitting complete http://services.faa.gov/airport/status/dfw
success - received airport info for dfw

请注意,preRequest FiredpostRequest Fired 显示相对于成功 - 收到 dfw 的机场信息。有什么想法我做错了吗?我的 Node 环境中配置错误,或者可能是错误的依赖版本?我很怀疑,因为它在 Node 命令提示符和 Lambda 的调试器(VS Code)中都失败了。

完整源代码链接:https://github.com/bignerdranch/alexa-airportinfo

最佳答案

我并不了解有关 Alexa 的 Promise 的所有内容,但我确实弄清楚了这一点。从您提出问题之日起,有较新版本的 alexa-app-server (3.0.1) 和 alexa-app (4.0.0) 可用。我最近使用这些版本开发了一项技能。 alexa-app 2(alexa-airportinfo 中提到的版本)不适用于最新的 alexa-app-server。

因此,首先要做的就是在代码中使用最新的 Alexa 应用程序。然后,意识到通过在 FAADataHelper 中使用 request-promise,代码将 Promise 返回到 index.js。为此,您需要返回 Promise,而不是函数末尾的 false。

总而言之,我获取了最新的 alexa-app-server,将 airportinfo 中的 alexa-app 版本更改为最新,然后运行它,得到与您相同的结果 - 响应在 rp 请求完成之前返回。当我将代码更改为下面时,我得到了所需的结果 - 请求已完成,然后响应随演讲结束。

app.intent('airportinfo', {
'slots': {
'AIRPORTCODE': 'FAACODES'
},
'utterances': ['{|flight|airport} {|delay|status} {|info} {|for} {-|AIRPORTCODE}']
},
function(req, res) {
//get the slot
var airportCode = req.slot('AIRPORTCODE');
var reprompt = 'Tell me an airport code to get delay information.';
if (_.isEmpty(airportCode)) {
var prompt = 'I didn\'t hear an airport code. Tell me an airport code.';
res.say(prompt).reprompt(reprompt).shouldEndSession(false);
return true;
} else {
var faaHelper = new FAADataHelper();
return faaHelper.requestAirportStatus(airportCode).then(function(airportStatus) {
console.log(airportStatus);
res.say(faaHelper.formatAirportStatus(airportStatus)).send();
}).catch(function(err) {
console.log(err.statusCode);
var prompt = 'I didn\'t have data for an airport code of ' + airportCode;
//https://github.com/matt-kruse/alexa-app/blob/master/index.js#L171
res.say(prompt).reprompt(reprompt).shouldEndSession(false).send();
});
// return false;
}
}
);

关于node.js - Alexa-app 和 request-promise 的网络问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42992126/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com