4

我在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>
4

1 回答 1

8

您可以像这样在 orderBy 子句中使用函数:

<li data-ng-repeat="country in countries | filter:name | orderBy:'toString()'"> {{ country }}</li>
于 2013-06-12T12:18:46.223 回答