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

前端 未结 11 809
天命终不由人
天命终不由人 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 17:45

    it says that you called to loading.dismiss() before load.presenet() ended. you should try

    let a = this.loadingCtrl.create({content : 'hello world'})
    await a.present();
    ..
    .. // your code goes here..
    ...
    a.dismiss()
    

提交回复
热议问题