离子吐司迫使用户停止输入

时间:2018-11-06 20:51:08

标签: cordova ionic-framework ionic2 ionic3

我正在使用Ionic,Angular Firebase构建应用程序。

我遇到一个独特的问题,如果用户在文本框中键入内容,并且会出现一个吐司,它会隐藏键盘并强制用户停止键入...是否有办法防止这种情况发生?

该应用程序是一个社交网络,因此人们会经常收到通知,并且代码也非常简单:

this.listenToNotifications().pipe(
    tap(msg => {
      let message = msg.body || "You have a new notification!";
      const toast = this.toastCtrl.create({
        message: message,
        duration: 3000,
        position: 'top',
        showCloseButton: true,
        closeButtonText: "Ok"
      });
      toast.present();
    })
  ).subscribe()

有人知道解决方案吗?

谢谢:)

0 个答案:

没有答案