我正在尝试显示具有表格编号的名称,并且它们按表格编号排序。
我的数据看起来像:
我的代码是:
@Component({
selector: 'dropAndDrag',
template: `
<ul>
<li *ngFor="let item of (items|async)" [dragula]='"bag-one"' [dragulaModel]='(items|async)'></li>
</ul>
`
})
export class SortTableComponent {
items: any;
constructor(public service: SmartTablesService) {
this.items=this.service.getData();
}
}
问题是如何按表号对其进行分组并显示,this.items 是对象数组,因此模板 ng for 也应该更改为获取 name 属性,如 item.name 。