Alexa Skill Kit (ASK) の組み込みインテント「AMAZON.NUMBER」は、数字 (「5」) を数字 (「5」など) に変換します。Alexa AMAZON.NUMBER を数字の単語 (「5」) に変換して、Alexa が話せるようにするにはどうすればよいでしょうか?
しようとしている:
"CheckNumberIntent": function (intent, session, response) {
var numberSlot = intent.slots.Number,
numberName;
speech = "Dude you said" + numberSlot + "we should hang out";
var speechOutput = {
speech: speech,
type: AlexaSkill.speechOutputType.PLAIN_TEXT
};
response.tellWithCard(speechOutput, "Greeter", "Hello World!");
これにより、次の結果が得られます。
"response": {
"outputSpeech": {
"type": "PlainText",
"text": "Dude you said[object Object]we should hang out"
},