会话始终在操作的欢迎消息之后结束

时间:2016-12-08 16:37:47

标签: actions-on-google

我正在使用Node.js客户端库来编写我的操作,但麦克风在第一条消息后关闭,我从未得到用户的回答。 这是我正在使用的代码:

grades = ["Select", "Choice", "Prime"]
steaks = grades.map {|grade| Steak.new(grade.downcase) }

1 个答案:

答案 0 :(得分:1)

当您期望用户做出回复时,您应该使用let intent = assistant.getIntent(); switch (intent) { case WELCOME_INTENT: assistant.tell(‘Hi! Tell me something and I’ll repeat it.'); break; } assistant.ask()方法向用户回复文本,并通过关闭麦克风结束对话。

https://developers.google.com/actions/develop/sdk/dialogs-and-fulfillment的更多详情。