簡體   English   中英

Dialogflow 履行獲取未顯示響應

[英]Dialogflow fulfillment fetch not showing response

當我調用意圖llamada時,意圖 webhook 會觸發,但它不會顯示我在agent.add(json[0].name)中傳遞的內容。

const express = require('express')
const app = express()
const {WebhookClient} = require('dialogflow-fulfillment');

const fetch = require('node-fetch')

let url = (ommited)
let settings = {method: "Get"};

app.get('/', function (req, res) {
  res.send('Hello World')
})

app.post('/webhook', express.json() ,function (req, res) {
  const agent = new WebhookClient({ request:req, response:res }); 
 
  function llamada(agent) {
    fetch (url, settings)
    .then(res => res.json())
    .then((json) => {
      agent.add(json[0].name)
    })
    .catch((error) => {
      assert.isNotOk(error,'Promise error'); 
    });
  }

  let intentMap = new Map();
  intentMap.set('llamada', llamada);
  agent.handleRequest(intentMap);
})
 
app.listen(3000, () => {
});

Dialogflow 未顯示 agent.add(json[0].name)

我收到此錯誤:

ok
(node:9936) UnhandledPromiseRejectionWarning: Error: No responses defined for platform: DIALOGFLOW_CONSOLE
    at V2Agent.sendResponses_ (C:\Users\aasensio\Desktop\Zerca\node_modules\dialogflow-fulfillment\src\v2-agent.js:243:13)
    at WebhookClient.send_ (C:\Users\aasensio\Desktop\Zerca\node_modules\dialogflow-fulfillment\src\dialogflow-fulfillment.js:505:17)
    at C:\Users\aasensio\Desktop\Zerca\node_modules\dialogflow-fulfillment\src\dialogflow-fulfillment.js:316:38
    at processTicksAndRejections (internal/process/task_queues.js:93:5)
(Use `node --trace-warnings ...` to show where the warning was created)
(node:9936) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with 
.catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:9936) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

我怎樣才能讓它正確地進入 Dialogflow 響應?

問題是您正在使用 Promise 執行異步操作,但agent.handleRequest()不知道等待 Promise 完成。 因此它會嘗試立即將結果返回給 Dialogflow,但尚未設置結果。

在您的情況下,解決這個問題很簡單。 您只需要返回由fetch().then()...鏈生成的 Promise。 像這樣的東西應該工作:

    return fetch (url, settings)
    .then(res => res.json())
    .then((json) => {
      agent.add(json[0].name)
    })
    .catch((error) => {
      assert.isNotOk(error,'Promise error'); 
    });

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM