我正在使用dialogflow进行Google行动。以下是两个条件
“打开sampleAction,并询问明天会有多少人来。”
在这种情况下,我将从以下参数中获取dateValue
"arguments": [
{
"name": "trigger_query",
"rawText": "expected parcels for tomorrow",
"textValue": "expected parcels for tomorrow"
},
{
"name": "date",
"rawText": "tomorrow",
"textValue": "tomorrow",
"dateValue": {
"year": 2019,
"month": 10,
"day": 11
}
}
]
“ queryResult”:{ “ queryText”:“明天的预期包裹”, “参数”:{ “ date”:“明天”, “ date-period”:“”, “给定的名称”: ”” }
但是在这种情况下dateValue不存在。请帮助我。