1
나는 다음과 같은 코드를 사용하여 MP3를 출력하는 알렉사 기술 의도가 :정지 아마존 알렉사 오디오 출력
intentName() {
this.handler.state = states.SOMESTATE;
this.response.audioPlayerPlay('REPLACE_ALL', audio.url, '1', null, 0);
}
나는이 (가) SOMESTATE
에 다음과 newSessionHandlers
핸들러 정의 :
'AMAZON.StopIntent' = function() {
this.response.audioPlayerStop();
this.emit(':responseReady');
}
을하지만, 내가 'Alexa, stop'이라고 말하면 위에 정의 된 중지 의도가 호출되지 않습니다. 대신 newSessionsHandlers
에 Unhandled
인 텐트가 호출되고 있습니다. 왜 이런거야?