我正在尝试显示具有表号的名称,并按tableNumber排序。
我的数据如下:
我的代码是:
@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();
}
}
问题如何按表号和show对其进行分组,this.items是对象数组,因此模板ng应更改为获取name.name等名称属性。