如何在我的intent处理程序中将shouldEndSession
设置为false?
我尝试过这样的事情:
response.shouldEndSession(false);
但它没有用。我正在使用JavaScript。
答案 0 :(得分:1)
如果您正在使用Node.js,您应该能够执行以下操作:
response.shouldEndSession(false, "Reprompt your user here");
如果你只是使用普通的Javascript而只是在返回对象中设置值,那么如果你的回复你想要包含以下内容:
{
...
"reprompt": {
"outputSpeech": {
"type": "PlainText",
"text": "Reprompt your user here"
}
},
"shouldEndSession": false
}