如何在离子应用程序中显示快速回复

时间:2018-06-23 10:38:30

标签: ionic-framework ionic3 chatbot dialogflow

我正在尝试使用dialogflow在ionic 3中构建一个聊天机器人。快速答复在dialogflow网站上有效,但未在应用程序中显示。不过,正常消息会显示在应用中。我猜我的代码有问题。

sendText() {
let message = this.text;
this.messages.push({
  text: message,
  sender: "me"
});
this.content.scrollToBottom(200);
this.text = "";
window["ApiAIPlugin"].requestText({
  query: message
}, (response) => {

  this.ngZone.run(() => {
    this.messages.push({
      text: response.result.fulfillment.speech,
      sender: "api"
    });
    this.content.scrollToBottom(200);
  })

}

0 个答案:

没有答案