我在angularJS中有一个字符串数组,我想为它的元素做一些排序我尝试这个代码但它不起作用我不知道为什么任何人有任何想法
<div id="cpntainer" data-ng-init="countries = ['Syria','Lebanon','Jordon','Egypt']">
Country Name <br />
<input type="text" data-ng-model="name" /> <br />
<ul>
<li data-ng-repeat="country in countries | filter:name | orderBy:country:false "> {{ country }} </li>
</ul>
</div>
答案 0 :(得分:7)
您可以在orderBy子句中使用如下函数:
<li data-ng-repeat="country in countries | filter:name | orderBy:'toString()'"> {{ country }}</li>