問題は、quizIntentハンドラのループ内で質問の配列をループすることができないことです。最初の質問のみが表示され、それ以上は移動しません。残りのコードは正常に動作しています。 私がしたいことはです。ユーザーが間違った答えを出すと、配列が使い果たされてループから抜け出すまで、質問を続けてください。Alexa Intentでオブジェクト配列をループする方法は?
私はAlexa Programmingのちょっとした初心者です。助けてください。ここで
は私の配列ここ
const got = [
{
question: "Grey Wind, Lady, Ghost, Shaggydog, Summer and the sixth direwolve's name is?",
answer: 'nymeria',
},
{
question: "What was the name of the sinister castle where Arya and Gendry were held prisoner in season two?",
answer: 'harrenhal',
},
{
question: "What is a person called that can enter the minds of animals?",
answer: 'warg',
},
{
question: "What was the name of the Stark ancestral sword that was melted down by Tywin Lannister?",
answer: 'ice',
}
];
はここに私のアレクサ・インテント
var handlers = {
"customIntent": function() {
this.response.speak("Would you like to appear for a trial by combat");
this.emit(":responseReady");
},
"quizIntent": function() {
var mydecision = this.event.request.intent.slots.decision.value;
if(mydecision=='no'||mydecision=='nope'||mydecision=='naah'){
this.response.speak("A five year old has more courage than you.");
this.emit(":responseReady");
}
for(var i = 0; i <got.length; i++){
var myanswer = this.event.request.intent.slots.answer.value;
var item = got[i].question;
this.response.speak(item).listen();
if(myanswer!=got[i].answer){
this.response.speak("Wrong Answer. You are dead");
this.emit(':responseReady');
}
if(i==got.length-1){
this.response.speak("You won");
this.emit(':responseReady');
}
}
},
"LaunchRequest": function() {
this.response.speak("Valar Morghulis").listen("You are supposed to say Valar Dohareis");
this.emit(":responseReady");
}
};
は私の意図スキーマは、あなたがdoesnの場合には、あまりにも
{
"languageModel": {
"types": [
{
"name": "answerSlot",
"values": [
{
"id": null,
"name": {
"value": "Nymeria",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "Harrenhal",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "Warg",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "Ice",
"synonyms": []
}
}
]
},
{
"name": "decisionSlot",
"values": [
{
"id": null,
"name": {
"value": "Yes",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "No",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "Naah",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "Yeah",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "Yup",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "Nope",
"synonyms": []
}
}
]
}
],
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "customIntent",
"samples": [
"Valar Dohareis",
"hello",
"hola"
],
"slots": []
},
{
"name": "quizIntent",
"samples": [
"{decision}",
"The answer is {answer}"
],
"slots": [
{
"name": "decision",
"type": "decisionSlot"
},
{
"name": "answer",
"type": "answerSlot"
}
]
}
],
"invocationName": "quiz game"
}
}
これはAWSラムダスキルですか? – MangoBoy
はい。問題はラムダ関数の場合です – thedreamsaver
ラムダ関数のタイムアウトを試してください。 Speakingは非同期呼び出しであるため、ラムダ関数がタイムアウトしている可能性があります。 – MangoBoy