我有以下内容:
<div>
<ul>
<li *ngFor="let item of array | orderBy: 'type'">
{{ item.type | translate }}
</li>
</ul>
</div>
i18n translation
在li
块内。然后,无论翻译是什么,orderBy
管道都不关心对数组进行排序的语言。
如何以特定语言订购?
let item of array | translate: 'type' | orderBy: 'type'
translate
管道用于orderBy
管道orderBy
sort