Angular有一个orderBy过滤器,可以这样使用:
<select ng-model="selected" ng-options="f.name for f in friends | orderBy:'name'"></select>
有关示例,请参见此小提琴。
值得注意的是,如果
track by正在使用它,它需要出现在
orderBy过滤器之后,如下所示:
<select ng-model="selected" ng-options="f.name for f in friends | orderBy:'name' track by f.id"></select>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)