Dialogflow中的getArgument()

时间:2018-06-05 07:44:52

标签: node.js dialogflow

我正在尝试在dialogflow的Fulfillment中检索一个参数。

当我使用let name = agent.getArgument('name');检索参数时,我收到以下错误TypeError: agent.getArgument is not a function

agentconst agent = new WebhookClient({ request, response });(默认),其他功能(如agent.add())也可以正常使用。

我正在使用Cloud Functions for Firebase。

任何想法我做错了什么?

1 个答案:

答案 0 :(得分:1)

查看documentation,没有现有的getArgument()方法。

也许您正在寻找agent.parameters

Actions and Parameters