接收用户在DIalogFlow中输入的实体数

时间:2019-05-20 14:12:26

标签: dialogflow actions-on-google

我正在尝试获取DialogFlow中特定实体的用户输入的实体数量,但是我没有在DialogFlow文档中找到任何可以返回该值的API(我想要的示例:水果实体,如果用户键入Maces,橙色,则返回的结果将是2)。

const [Tamanho,Sabores,Rua,Num,NumPizza] = [agent.parameters.Tamanhos, agent.parameters.Sabores, agent.parameters.location, agent.parameters.numberinteger, agent.parameters.numbers];
const Sabtes = agent.parameters.Sabores.value; //It was just a test
  if(Sabores.items.length>4)
     agent.add("Você fez mais pedidos de sabores do que o permitido");

 if(Sabtes>2)
     agent.add("Você fez mais pedidos do que o permitido");  

0 个答案:

没有答案