错误TypeError:无法读取未定义的属性“ present”

时间:2018-06-22 10:17:31

标签: ionic-framework

  

ActionSheetCmp.html:1错误TypeError:无法读取属性“ present”   的未定义

我的代码:

 onManageIngredients() {
      const actionSheet = this.actionSheetController.create ({
        title: 'waht do you want to do?',
        buttons: [
          {
            text: 'Add Ingredient',
            handler: () => {
              this.createNewIngredientAlert().present();
            }

1 个答案:

答案 0 :(得分:0)

方法this.createNewIngredientAlert()可能返回undefined或所有返回值。

(只是一个猜测)我想,您在这里尝试基于回调调用(alert)AlertController,并尝试在AlertController方法中返回this.createNewIngredientAlert()实例