功能ical.fromURL无效AWS Lambda

时间:2018-04-19 18:21:51

标签: node.js amazon-web-services aws-lambda icalendar

我正在使用Alexa技能可以使用的Lambda函数。我想要的只是简单的东西,可以读取事件并将信息发送回用户。为此,我使用npm库ical.js https://www.npmjs.com/package/ical和函数ical.fromURL(url,options,function(err,data){}),但问题是函数永远不会执行。我有以下代码:

var Alexa = require("alexa-sdk");
var ical = require("ical");
var test = "This is a simple test 1";

exports.handler = function(event, context) {
   var alexa = Alexa.handler(event, context);
   alexa.registerHandlers(handlers);
   alexa.execute();
};

var handlers = {
   'LaunchRequest':function() {
       console.log(test);
       ical.fromURL('http://lanyrd.com/topics/nodejs/nodejs.ics', {}, function(err, data) {
           test = "Nothing changes";
       });
       console.log(test);
       test.emit(':tell', 'I am done');
    }
};

这是我从可以观看时得到的输出"要求模拟-l en-US -t'开始日历阅读'"在ASK CLI output on cloudwatch中,您可以看到测试文本没有变化,如果它在函数之外(错误,数据){},它将起作用。我不相信在日历中阅读有任何问题,因为链接http://lanyrd.com/topics/nodejs/nodejs.ics会下载工作的ics文件。如果我在https://npm.runkit.com/ical工具中尝试,该功能会激活。所以我不确定我做错了什么。此外,技能工作在alexa技能套件开发中进行测试时会给出响应。

1 个答案:

答案 0 :(得分:0)

您错误地输入了test.emit(':tell', 'I am done');而不是this.emit(':tell', 'I am done');

此外,您的代码不会从网址返回数据,因为this.emit将首先返回而不是您的回调函数。要返回数据,您需要将this.emit放在ical.fromURL的回调函数中。

var handlers = {
   'LaunchRequest':function() {
       console.log(test);
       ical.fromURL('http://lanyrd.com/topics/nodejs/nodejs.ics', {}, (err, data) => {
           test = "Nothing changes";

           console.log(test);
           // you can edit the response here base on the data you receive.
           this.emit(':tell', `I am done: ${test}`);
       });
    }
};