我在角度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);
}
}
请指导我如何继续。