首页 文章

Alexa没有调用Intent

提问于
浏览
0

我试图制作一个alexa技能,这是基于alexa蓝图的事实技巧 . 我创建了一个名为“myIntent”的自定义Intent,它有一个变量“”或插槽类型“myNameSlot” . 我添加了多个值,如“Dhruv,User,My User”(都是单独的值) .

所以,我试图通过模拟器在Test中启动我的Alexa技能 . 它正在推出所有内置意图 . 但是,当我尝试启动我的自定义Intent时,它不会启动 . 我写了相同的话语,但是,它没有被调用 .

这里's my Lambda Function' s代码:https://pastebin.com/7CrdMffW

/* eslint-disable  func-names */
/* eslint quote-props: ["error", "consistent"]*/
/**
 * This sample demonstrates a simple skill built with the Amazon Alexa Skills
 * nodejs skill development kit.
 * This sample supports multiple lauguages. (en-US, en-GB, de-DE).
 * The Intent Schema, Custom Slots and Sample Utterances for this skill, as well
 * as testing instructions are located at https://github.com/alexa/skill-sample-nodejs-fact
 **/

'use strict';
const Alexa = require('alexa-sdk');

//=========================================================================================================================================
//TODO: The items below this comment need your attention.
//=========================================================================================================================================

//Replace with your app ID (OPTIONAL).  You can find this value at the top of your skill's page on http://developer.amazon.com.
//Make sure to enclose your value in quotes, like this: const APP_ID = 'amzn1.ask.skill.bb4045e6-b3e8-4133-b650-72923c5980f1';
const APP_ID = undefined;

const SKILL_NAME = 'Space Facts';
const GET_FACT_MESSAGE = "Here's your fact: ";
const HELP_MESSAGE = 'You can say tell me a space fact, or, you can say exit... What can I help you with?';
const HELP_REPROMPT = 'What can I help you with?';
const STOP_MESSAGE = 'Goodbye!';

//=========================================================================================================================================
//TODO: Replace this data with your own.  You can find translations of this data at http://github.com/alexa/skill-sample-node-js-fact/data
//=========================================================================================================================================
const data = [
    'A year on Mercury is just 88 days long.',
    'Despite being farther from the Sun, Venus experiences higher temperatures than Mercury.',
    'Venus rotates counter-clockwise, possibly because of a collision in the past with an asteroid.',
    'On Mars, the Sun appears about half the size as it does on Earth.',
    'Earth is the only planet not named after a god.',
    'Jupiter has the shortest day of all the planets.',
    'The Milky Way galaxy will collide with the Andromeda Galaxy in about 5 billion years.',
    'The Sun contains 99.86% of the mass in the Solar System.',
    'The Sun is an almost perfect sphere.',
    'A total solar eclipse can happen once every 1 to 2 years. This makes them a rare event.',
    'Saturn radiates two and a half times more energy into space than it receives from the sun.',
    'The temperature inside the Sun can reach 15 million degrees Celsius.',
    'The Moon is moving approximately 3.8 cm away from our planet every year.',
];

//=========================================================================================================================================
//Editing anything below this line might break your skill.
//=========================================================================================================================================

const handlers = {
    'LaunchRequest': function () {
        // this.emit('myIntent');
        this.emit(':tell', '2 Hello, what would you like to do?');
    },
    'myIntent': function () {
        const factArr = data;
        const factIndex = Math.floor(Math.random() * factArr.length);
        const randomFact = factArr[factIndex];
        const speechOutput = GET_FACT_MESSAGE + randomFact;

        this.response.cardRenderer(SKILL_NAME, randomFact);
        this.response.speak('Halo ' + speechOutput);
        this.emit(':responseReady');
    },
    'AMAZON.HelpIntent': function () {
        const speechOutput = HELP_MESSAGE;
        const reprompt = HELP_REPROMPT;

        this.response.speak(speechOutput).listen(reprompt);
        this.emit(':responseReady');
    },
    'AMAZON.CancelIntent': function () {
        this.response.speak(STOP_MESSAGE);
        this.emit(':responseReady');
    },
    'AMAZON.StopIntent': function () {
        this.response.speak(STOP_MESSAGE);
        this.emit(':responseReady');
    },
};

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

我不确定这里发生了什么 .

EDIT: 这是关于我的Intent和自定义插槽的信息:

Intent Name : myIntent .

Utterances :

1.)告诉我

2.)的synopsys是什么

Intent Slots (1) : data_of_intent 类型 my_custom_type .

Custom Slot Type Values :

1.)一件

2.)花梦

3.)Kanai kun

4.)雨停了吗?

1 回答

  • 0

    我仔细检查了我在第一次打击时收到的JSON . 问题是 shouldEndSession 设置为true,这是因为,在NodeJS中, shouldEndSession:tell 中设置为true并且无法覆盖 .

    我用的是:

    this.emit(':tell', '2 Hello, what would you like to do?'); .

    我改成了:

    this.emit(':ask', '2 Hello, what would you like to do?');

    它起作用了 .

    有一个Github线程相同:https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/issues/64

相关问题