路由更改时如何更新组件。我有这个组件:
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { ListService } from '../list/list.service';
@Component({
selector: 'view',
template: `
<div *ngIf="!entity">
<p>Select <b (click)="showRow()">row {{entity}}</b>!</p>
</div>
<div *ngIf="entity">
<p >{{entity.id}}</p>
<p >{{entity.name}}</p>
<p >{{entity.weight}}</p>
<p >{{entity.symbol}}</p>
</div>
`,
styles: []
})
export class ViewComponent implements OnInit {
constructor(
private route: ActivatedRoute,
private service: ListService
) {
this.route.params.subscribe(params => {
const id = parseInt(params['id']);
if (id) {
const entity = this.service.getRow(id);
this.entity = entity
}
});
}
entity;
showRow() {
console.log(this.entity);
}
ngOnInit() {
}
}
在this.entity
内部构造函数中,我有所需的对象,但是当我执行 showRow 时this.entity
未定义,我做错了什么?我试图将属性更改为不同的名称,但它没有按预期工作,如果有人知道如何解决这个问题或指出我正确的方向。
编辑:来自服务的 getRow
getRow(id) {
console.log(id, 'test');
return this.datasource.find(row => row.id === id);//returns good row
}