Ionic - Error: Uncaught (in promise): removeView was not found

前端 未结 11 751
天命终不由人
天命终不由人 2020-12-15 16:56

My Ionic app was working fine and I haven\'t done anything to it but suddenly I am getting this error and I don\'t know why.

\"Error: Uncaught (in pro

11条回答
  •  醉梦人生
    2020-12-15 18:00

    For me, the simple fix was changing:

    this.loader.dismiss()
    

    to:

    this.loader.dismiss().then(value => {
        console.log("dismiss worked!");
    }, reason => {
        console.log("dismiss rejected!");
    });
    

提交回复
热议问题