11

我正在为 Alexa 创建自定义技能。我想关闭会话AMAZON.StopIntent。我怎样才能用下面的代码实现这一点?

const ExitHandler = {
  canHandle(handlerInput) {
    const request = handlerInput.requestEnvelope.request;
    return request.type === 'IntentRequest'
      && (request.intent.name === 'AMAZON.StopIntent');
  },
  handle(handlerInput) {
    return handlerInput.responseBuilder
      .speak('bye!')
      .reprompt('bye!')
      .getResponse();
  },
};
4

2 回答 2

34

当响应 JSON 中的shouldEndSession标志设置为 true时,Alexa 结束会话。

... 
"shouldEndSession": true
...

在您的响应构建器中,您可以尝试使用辅助函数withShouldEndSession(true)

 return handlerInput.responseBuilder
      .speak('bye!')
      .withShouldEndSession(true)
      .getResponse();

此处列出了响应构建器辅助函数

于 2018-07-04T13:25:09.623 回答
5

在您的代码片段中,您只需删除提示行即可结束会话:

return handlerInput.responseBuilder
  .speak('bye!')
  .getResponse();

所以下面建议的解决方案有效,但它是多余的:

return handlerInput.responseBuilder
      .speak('bye!')
      .withShouldEndSession(true)
      .getResponse();

上面的代码经常用在相反的场景中,当你想在没有提示的情况下保持会话打开:

return handlerInput.responseBuilder
      .speak('bye!')
      .withShouldEndSession(false)
      .getResponse();
于 2018-09-07T18:10:57.737 回答