我试图让我的文件管理更容易一些,并将每个意图放在自己的文件中。我如何包含它,以便我的 index.js 使用该意图。继承人和我尝试过的示例。
var alexa = require('alexa-app');
var app = new alexa.app();
var GetLunchSuggestions = require('./Intents/GetLunchSuggestions');
app.launch(function(request, response) {
response.say('Welcome I am built to handle your lunch requests');
response.shouldEndSession(false);
});
app.use(GetLunchSuggestions);
// Connect to lambda
exports.handler = app.lambda();
if (process.argv.length === 3 && process.argv[2] === 'schema') {
console.log(app.schema());
console.log(app.utterances());
}
我想在这个文件中使用午餐建议意图。你怎么做到这一点?