我正在尝试使用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);
})
}