我想在组件之间传递一个值,以便从候选人列表切换到另一个面板,在这里我可以编辑所选的候选人。
不幸的是,当我尝试记录我在列表候选组件中初始化的候选者时,我的编辑候选组件中出现此错误:错误TypeError:“ this.listCandidateComponent is undefined”。
list-candidate.component.html
<table class="table table-striped">
<tbody *ngFor="let candidate of candidates">
<td><h4>{{ candidate.id }}</h4></td>
<td><a class="btn btn-outline-warning btn-sm" style="margin: 1%"
(click)="getCandidateById(candidate.id)" role="button">Modifier</a>
</td>
</tbody>
</table>
list-candidate.component.ts
@Component({
selector: 'app-list-candidate',
templateUrl: './list-candidate.component.html',
styleUrls: ['./list-candidate.component.scss']
})
export class ListCandidateComponent implements OnInit {
candidate: Candidate;
candidates: Candidate[];
ngOnInit() {
this.getCandidateList();
}
async getCandidateById(id: number) {
const headers = new HttpHeaders({
'Content-type': 'application/json; charset=utf-8',
Authorization: 'Bearer ' + this.cookie.get('access_token')
});
const options = {
headers
};
await this.httpClient.get(`${this.baseUrl}/${id}`, options)
.toPromise()
.then(
(response: Candidate) => {
console.log('GET request successful', response);
this.candidate = response;
},
(error) => {
console.log('GET error : ', error);
}
);
await this.router.navigate(['/candidates/edit']);
}
edit-candidate.component.ts
@Component({
selector: 'app-edit-candidate',
templateUrl: './edit-candidate.component.html',
styleUrls: ['./edit-candidate.component.scss']
})
export class EditCandidateComponent implements OnInit, AfterViewInit {
candidate: Candidate;
@ViewChild(ListCandidateComponent) listCandidateComponent;
ngAfterViewInit() {
this.candidate = this.listCandidateComponent.candidate;
console.log(this.candidate);
}
ngOnInit() {
}
有什么想法吗?
答案 0 :(得分:0)
您正在路由到编辑页面。
await this.router.navigate(['/candidates/edit']);
在这种情况下,您不能使用ViewChild。
您必须在路由器中添加参数。导航类似
await this.router.navigate(['/candidates/edit'], { queryParams: { candidateId: id } });
在您的编辑组件中,您必须阅读queryParams
id: any;
constructor(private route: ActivatedRoute) { }
ngOnInit() {
this.route.queryParams
.subscribe(params => {
this.id = params['candidateId'];
});
}
现在,只需在编辑组件中将ID加载到候选人中,就可以完成:)
您已将Viewchild放置在编辑组件中。如果要使用Viewchild加载List组件,则edit-candidate.component.html中的任何地方都必须类似
<app-list-candidate>
</app-list-candidate>
否则,它将始终是未定义的,因为列表组件不是编辑组件的子组件。
希望对您有帮助-抱歉,如果我误解了您的问题(: