排序功能不包含在角度2.我可以使用mongoose排序,并在我的购物车应用程序中工作。我应该使用管道吗?有什么缺点?我仍然是角度2和平均堆栈的新手。感谢。
答案 0 :(得分:0)
我在我的应用程序中使用了管道和mongoose查询。这是为了
对category(ele, sh, vid)
Product
组件排序进行排序
通过OnInit()
的mongoose按字母顺序搜索产品。
<div [ngClass]="displayCategory">
<ul *ngFor="let category of categories | order by: ['fieldName'];let i=index">
<div class="checkbox">
<input type="checkbox" value={category.selected}}
[ngModel]="category.selected" (change)="onCategory($event,i)">
{{category.fieldName}}{{category.count()}})
</div>
</ul>
</div>