我的 Angular 应用程序出现问题,显示 ERROR TypeError: Cannot read property 'name' of undefined 但正在显示 projects.name。我怎样才能摆脱console.log中的错误。数据包含一个对象。
ngOnInit() {
this.route.params
.subscribe((params: Params) => {
this.id = +params['id'];
this.projectsService = this.injector.get(ProjectsService);
this.projectsService.getProject(this.id)
.subscribe(
(data:any) => {
this.projects = data;
console.log(data);
},
error => {
alert("ERROR");
})
});
}