【发布时间】:2017-08-10 12:12:20
【问题描述】:
我正在使用 nodeJS 代码使用请求模块进行休息调用。我也使用了回调函数,但是请求函数没有被执行。
我的流程转到函数 searchTSTData,但请求方法没有得到执行。
从回调函数中,我只得到了我在 searchTSTData 函数中初始化的 responseString = 'Yet to make query rest'。它不会根据 API 返回的响应进行更新,该响应应该是错误或成功响应字符串。
我已将模块包含在 zip 中,因为 lambda 不会引发错误并通过测试。 此外,我确信请求模块无法像在 Cloudwatch 日志中那样工作,我没有看到我在请求中写入的任何 console.logs。
请指出我哪里出错了。我是 NodeJS 的新手。
这里是代码-
'use strict';
const request = require('request');
const Alexa = require('alexa-sdk');
const APP_ID = 'amzn1.ask.skill.80a49cf5-254c-123a-a456-98745asd21456';
const languageStrings = {
'en': {
translation: {
TST: [
'A year on Mercury is just 88 days long.',
],
SKILL_NAME: 'TEST',
GET_TST_MESSAGE: "Here's your TST: You searched for ",
HELP_MESSAGE: 'You can say get me a TST, or, you can say exit... What can I help you with?',
HELP_REPROMPT: 'What can I help you with?',
STOP_MESSAGE: 'Goodbye!',
},
},
};
const handlers = {
'LaunchRequest': function () {
this.emit('GetTST');
},
'GetNewTSTIntent': function () {
this.emit('GetTST');
},
'GetTST': function () {
// Get a random space fact from the space facts list
// Use this.t() to get corresponding language data
const inputValue = this.event.request.intent.slots.Search.value;
var finalResponse = "Some error occurred in code. Please try again later.";
console.log('Input recieved as '+inputValue);
searchTSTData(inputValue, function (response){
console.log('trying to call');
finalResponse = response;
});
console.log("after function call");
// Create speech output
const speechOutput = this.t('GET_TST_MESSAGE') + inputValue+". Here are the results " +finalResponse;
this.emit(':tellWithCard', speechOutput, this.t('SKILL_NAME'), speechOutput);
},
'AMAZON.HelpIntent': function () {
const speechOutput = this.t('HELP_MESSAGE');
const reprompt = this.t('HELP_MESSAGE');
this.emit(':ask', speechOutput, reprompt);
},
'AMAZON.CancelIntent': function () {
this.emit(':tell', this.t('STOP_MESSAGE'));
},
'AMAZON.StopIntent': function () {
this.emit(':tell', this.t('STOP_MESSAGE'));
},
};
exports.handler = function (event, context) {
const alexa = Alexa.handler(event, context);
alexa.APP_ID = APP_ID;
// To enable string internationalization (i18n) features, set a resources object.
alexa.resources = languageStrings;
alexa.registerHandlers(handlers);
alexa.execute();
};
function searchTSTData(searchString,callback){
var responseString = 'Yet to make query rest';
request({
url: 'https://api.google.com/getresultsInJson',
method: 'GET'
}, function (error, response, body) {
if (error) {
responseString = 'Error received from rest api. Please try again after some time.';
} else if(response.statusCode===200){
responseString = 'Sucess Success';
}else{
responseString = 'Nothing is working';
}
});
callback(responseString);
}
【问题讨论】:
-
你还面临这个问题吗?
标签: node.js amazon-web-services request aws-lambda alexa