1
我想在選擇列表中顯示項目列表。該列表表示對象的所有可能的值。我想預先檢查這個對象中包含的現有值。如何使用角度材質列表
如果我的對象是「foo」。 然後,我希望foo.items中的所有值都在項目列表中預先檢查。
template.html
<mat-selection-list #itemList>
<h3 mat-subheader>Items</h3>
<mat-list-option *ngFor="let item of items"> {{items.name}} </mat-list-option>
</mat-selection-list>
component.ts
ngOnInit() {
this.route.url.subscribe(url => {
this.itemService.findAll().subscribe(items => {
this.items = items;
});
const options: string[] = [];
options['include'] = 'items';
this.route.params
.switchMap((params: Params) => this.fooService.findById(params['id'], options))
.subscribe((item) => {
this.foo = foo;
});
});
我需要做什麼處理呢?文檔是非常succint