如何根据ng2-order-pipe中的子属性对对象数组进行排序

时间:2018-01-14 08:34:48

标签: angular

我正在开发需要对对象数组进行排序的angular2项目, 我在这里使用ng2-order-pipe来排序对象数组:

<p *ngFor="let customer of customers | orderBy: 'Name'">{{ customer.Name}}</p>

Name属性是customer中的属性,排序正常, 但我想要做的是根据customer.Group.Name对数组进行排序。 这是ng2-order-pipe的文档: https://www.npmjs.com/package/ng2-order-pipe

1 个答案:

答案 0 :(得分:0)

你应该使用点运算符

<p *ngFor="let customer of customers | orderBy: 'Group.Name'">{{ customer.Name}}</p>

<强> DEMO