如何在 Dialogflow 中获得用户响应

How do I get a users response in Dialogflow

如何从向用户提出的问题中获取用户的响应并在 fulfillment 中显示响应?


示例: Google 助理: 你叫什么名字?

用户: 我叫尤里·阿尔维斯

Google 助理: 你好,尤里·阿尔维斯

这是实现此目的的最简单方法:

  • 使用响应设置意图 What is your name?
  • 设置后续意图,使用短语 My name is Yuri Alves, I am Yuri Alves
  • 创建实体name_entity 用于识别名字和姓氏
  • 将实体标记为 required
  • 给出提示What is your name?
  • 在响应中打印Hello, $name_entity

希望对您有所帮助。