var app = new Alexa.app('appName');
// ...
app.intent('marcopolo', {
'slots': {},
'utterances': ['marco']
}, function(request, response){
console.log('marco worked');
response.say('polo').shouldEndSession(false).send();
});
// Alexa says: polo
// Log says: marco worked
var app = new Alexa.app('appName');
// ...
app.intent('marcopolo', {
'slots': {},
'utterances': ['marco']
}, function(request, response){
console.log('marco started');
return ajax('http://www.google.com')
.then(function(){
console.log('marco response');
response.say('polo').shouldEndSession(false).send();
})
.catch(function(){
console.log('marco error');
response.say('polo, I think').shouldEndSession(false).send();
});
});
// alexa says: (no response)
// Log says: marco started
我尝试使用request-promise和superagent作为Ajax库,结果相同。
以下是版本:
"alexa-app": "^2.4.0",
"request-promise": "^2.0.0",
"superagent": "^3.8.3"
这是我的Alexa技能意图:
"intents": [
{
"name": "marcopolo",
"slots": [],
"samples": [ "marco" ]
}
]
我从未见过app.intent()
采用return
语句的示例,但我在网上某处读到了一条回复,表明在app.intent()
内异步需要返回一个承诺,但是这个更新没有效果:
return ajax('http://www.google.com')
我也认为可能很慢并且超时,但我的Alexa Skill Timeout设置为5分钟。我有其他技能可以毫无问题地执行Ajax,并且代码都运行在Lambda(云服务)上,因此我无法想象任何环境会导致问题。
任何帮助表示感谢。
答案 0 :(得分:1)
var ajax = require('request-promise');
//...
app.intent('marcopolo', {
'slots': {},
'utterances': ['marco']
}, function(req, res){
ajax('http://google.com').then(function() {
console.log('success');
res.say('polo').send();
}).catch(function(err) {
console.log(err.statusCode);
res.say('not working').send();
});
return false;
});
事实证明,需要return
语句,且必须为false
。我无法找到任何记录的地方,也没有任何关于return false
对app.intent()
的含义的解释。返回undefined
或Promise对象会破坏交互。