agent.add()不工作,尽管 console.log()是

问题描述 投票:0回答:1

我正在尝试使用Telegram、Dialogflow和Firebase实现一个机器人,我在这个函数上遇到了问题。

function findDoc(agent){
    const userId = request.body.originalDetectIntentRequest.payload.data.from.id.toString();
    const first_name = request.body.originalDetectIntentRequest.payload.data.from.first_name;
    console.log(`Telegram user ID: ${userId}, first_name: ${first_name}`);//THIS SHOWS
    agent.add(`voy a ver si existe el documento`);//THIS SHOWS
    agent.setContext({name: "firstTimer", lifespan:10});
    return db.collection('users').doc(''+userId).get()
      .then((doc) => {
        if (!doc.exists) {
          console.log(`New user created in database `);//THIS SHOWS
          agent.add(`New user created in database`);//THIS DOESN'T SHOW
          var data={
            'id':userId, 
            'name':first_name, 
            'contadorP': 0,
            'doneQuestions': [],
          };
          return db.runTransaction((dataDB)=>{
            dataDB.set(db.collection('users').doc(''+userId), data,{merge:true});
            return Promise.resolve();
          }).catch((err) => {
                console.error(`Error creating file: `+err);
            });
        } else {
          console.log('Found Telegram profile: ', JSON.stringify(doc.data()));//THIS SHOWS
          const data = doc.data();
          agent.add(`User ${data.id} has the name of ${data.nombre}`);//THIS DOESN'T SHOW
        }
      })
      .catch((err) => {
        console.error(err);
      });
  }

我确信这个函数工作正常,因为Firebase控制台的console.log()工作正常,因为它们显示了它们应该显示的内容;而且我也没有得到任何错误的反馈......

下面是我的包.json中的依赖关系。

"dependencies": {
    "actions-on-google": "^2.5.0",
    "firebase-admin": "^8.2.0",
    "firebase-functions": "^2.0.2",
    "dialogflow": "^0.6.0",
    "dialogflow-fulfillment": "^0.6.1"
  }

这是我处理intents的方法。

  intentMap.set('Default Welcome Intent', welcome);

这是调用 findDoc() 函数的函数。

function welcome(agent){
    console.log(`Estoy en la funcion de welcome`);
    agent.add(`Welcome`);
    findDoc(agent);
  }

从我在网上读到的内容来看,这些依赖关系都很好,应该可以正常工作,所以我不知道还可以尝试什么,因为我已经(我认为)正确地完成了所有找到的建议。

javascript firebase google-cloud-firestore dialogflow telegram-bot
1个回答
1
投票

问题是,虽然 findDoc(agent) 异步处理事情并返回一个 Promise,你并没有把这个 promise 作为你的 welcome() 处理程序。dialogflow-fulfillment库要求你从你的处理程序中返回一个Promise,如果你正在做任何异步操作。

出现 承诺》以来的工作情况 完成,所以调用到 console.log() 做预期的工作。但由于你没有把这个Promise返回给调度员,它只把所有的东西从 agent.add() 到异步操作的点。

在你的情况下,解决方案很简单。因为在你的例子中,解决方案很简单。findDoc() 正在返回一个Promise,你所需要做的就是拥有一个 welcome() 也返回这个承诺。这样的东西应该可以用。

function welcome(agent){
  console.log(`Estoy en la funcion de welcome`);
  agent.add(`Welcome`);
  return findDoc(agent);
}
© www.soinside.com 2019 - 2024. All rights reserved.