我有这个user.ts类
export class Request {
thesis_id: string;
status: String;
}
export class User {
email: {type:String, unique:true};
requests: Array<Request>;
}
和论文
export class Thesis {
_id: string;
title: String
...
}
所以,我创建的是一个对论文进行请求的用户,每个请求都对应一个thesis_id
使用html组件中的关联的最佳方法是什么,因此我可以这样:
<div *ngFor="let request of user.requests">
request.status
//I want here the thesis Title
</div>