Alexa 任务问题
我目前正在通过 AWS Lambda 编写一个 Node.js Alexa Task,我一直在尝试编写一个函数,该函数接收来自 OpenWeather API 的信息,并将其解析为一个名为 weather
的变量。有关守则如下:
var request = require('request');
var weather = "";
function isBadWeather(location) {
var endpoint = "http://api.openweathermap.org/data/2.5/weather?q=" + location + "&APPID=205283d9c9211b776d3580d5de5d6338";
var body = "";
request(endpoint, function (error, response, body) {
if (!error && response.statusCode == 200) {
body = JSON.parse(body);
weather = body.weather[0].id;
}
});
}
function testWeather()
{
setTimeout(function() {
if (weather >= 200 && weather < 800)
weather = true;
else
weather = false;
console.log(weather);
generateResponse(buildSpeechletResponse(weather, true), {});
}, 500);
}
我在 Cloud9和其他 IDE 中无数次运行这个代码片段,它似乎工作得完美无缺。但是,当我将它压缩到一个包中并将其上传到 AWS Lambda 时,会得到以下错误:
{
"errorMessage": "Cannot find module '/var/task/index'",
"errorType": "Error",
"stackTrace": [
"Function.Module._load (module.js:276:25)",
"Module.require (module.js:353:17)",
"require (internal/module.js:12:17)"
]
}
我安装了 module-js、 request 和许多其他 Node 模块,这些模块应该可以运行这段代码,但似乎没有什么能够解决这个问题。这是我的目录,以防万一:
- planyr.zip
- index.js
- node_modules
- package.json
有人知道问题出在哪里吗?