错误TypeError:无法读取Angular 5中未定义的属性'objectNotify'

时间:2018-05-29 15:31:44

标签: ionic3 angular5

我在角度5中调用ionViewDidLoad内的方法。在方法内部,我试图使用声明的对象。但对我来说,它显示ERROR TypeError: Cannot read property 'objectNotify' of undefined错误。这是我的代码。

export class NotificationsPage {
    public objectNotify = {};
    constructor(public navCtrl: NavController, public navParams: NavParams, public db: AngularFireDatabase) { }

    ionViewDidLoad() {
        this.notifyMethod();
    }
    notifyMethod() {
        this.objectNotify["name"] = "John";
        console.log(this.objectNotify);
    }
}

请指导我如何继续。

1 个答案:

答案 0 :(得分:0)

你应该错过了什么

我完全按照你的代码做了,没有问题

请参阅此https://stackblitz.com/edit/ionic-bqrrab