我是 angular2 的新手,并试图将对象结果绑定到 html 模板。我可以通过使用 Observable 从 srtvice 获取数据。我也可以在控制台和模板中看到 JSON 数据。但是当我尝试从结果 json 访问属性时,它没有显示如下图所示的数据。
下面是我的那个组件的代码,
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { JuniorService } from '../Service/service.junior';
import { Employee } from '../../models/Employee';
@Component({
selector: 'my-getjunior',
template: `<h1>Details of {{id}}
<hr/>
JSON : {{Junior | json}}
<hr/>
Summary : {{junior?.summary}}</h1>`
//templateUrl: './app/Junior/get/junior.get.html'
})
export class JuniorGet implements OnInit
{
errorMessage: string;
Junior: Employee;
id: number;
private sub: any;
constructor (private juniorService: JuniorService, private route: ActivatedRoute) {
}
ngOnInit(){
this.sub = this.route.params.subscribe(params => {
this.id = +params['id']; // (+) converts string 'id' to a number
this.getJunior(this.id);
});
}
getJunior(id) {
this.juniorService.getById(id)
.subscribe(
data => {
this.Junior = data;
console.log("Junior data", this.Junior);
},
error => this.errorMessage = <any>error);
}
}
我正在调用 imit 方法的服务以及我想在模板中看到的数据。
我还需要在哪里更改才能打印数据?