1
您可以閱讀here,您可以調用具有特定請求的技能。如何使用newSession處理程序調用具有特定請求的技能?
但我的技能有一個新會話處理程序,只要我試圖調用我的技能與特定的請求,它仍然在這個新的會話函數結束。
const handlers = {
'NewSession': function() {
this.attributes.speechOutput = this.t('WELCOME_MESSAGE', this.t('SKILL_NAME'));
this.attributes.repromptSpeech = this.t('WELCOME_REPROMT');
this.emit(':ask', this.attributes.speechOutput, this.attributes.repromptSpeech);
},
'RankIntent': function() {
const rank1raw = this.event.request.intent.slots.RankOne;
const rank2raw = this.event.request.intent.slots.RankTwo;
...
}
}
是否有一種方式來獲得正確的意圖,否則我將不得不做一些,如果在newsession的功能條款,看看是怎麼進來的,並且功能應對?