Why when I try to set a property in the onPageLoaded event, I get the error:
Cannot read property ‘X’ of undefined
If I do this in the constructor, it works fine. I don’t want my app to execute this action everytime and as much as I’ve read, the onPageLoaded would be the appropriate event for that as it is called only once.
What am I missing?
Here is my code:
import {Component} from "@angular/core";
import {SubjectsViewModel} from "./subjects.viewmodel";
import {SubjectsService} from "./subjects.service";
export interface ISubjectsComponentScope {
subjectsViewModel: SubjectsViewModel;
}
@Component({
templateUrl: "build/users/sus/subjects/subjects.html",
providers: [SubjectsService]
})
export class SubjectsComponent implements ISubjectsComponentScope {
constructor(private subjectsService: SubjectsService) {
}
public subjectsViewModel: SubjectsViewModel;
protected onPageWillEnter(): void {
this.subjectsService.getSubjects()
.then(subjects => {
this.subjectsViewModel = new SubjectsViewModel("Title", subjects);
});
}
}