我应该如何在意图处理程序中将shouldEndSession设置为false?

我试图做类似的事情:

response.shouldEndSession(false);


但这没有用。我正在使用JavaScript。

最佳答案

如果您使用的是Node.js,则应该能够执行以下操作:

response.shouldEndSession(false, "Reprompt your user here");


如果仅使用普通的Javascript,并且仅在返回对象中设置值,则您的响应中应包括以下内容:

{
...
  "reprompt": {
    "outputSpeech": {
      "type": "PlainText",
      "text": "Reprompt your user here"
    }
  },
  "shouldEndSession": false
}

关于javascript - Amazon Echo开发:设置shouldEndSession的方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34049008/

10-11 06:31