我想根據他們的ID來訂購一些鋰。如何使用AngularJS更改列表項目的順序?
目前我有:
<ul bx-slider="" id="rotator" style="width: auto; position: relative;">
<li class="promo-banner ng-scope" ng-repeat="feature in events | limitTo:2"
bx-slider-item="" ordering="" id="ORDER-ROTATOR2"
style="float: none; list-style: none; position: absolute; width: 1510px; z-index: 50; display: block;">
</li>
<li class="promo-banner ng-scope" ng-repeat="feature in events | limitTo:2"
bx-slider-item="" id="ORDER-ROTATOR1" ordering=""
style="float: none; list-style: none; position: absolute; width: 1510px; z-index: 0; display: none;">
</li>
</ul>
和我的指令是:
.directive('ordering', function() {
var linker2 = function (scope, element, attrs) {
var elem = angular.element('#rotator').find('li').sort(sortMe);
console.log(elem);
angular.element('#rotator').append(elem);
function sortMe(a, b) {
return a.id < b.id;
}
};
return {
link: linker2
}
})
它看起來像它的排序,但不是他們的ID。
任何想法?
可以使用OrderBy管? – bryan60
我可以使用orderby按className或id進行排序嗎? –
是的,它的文檔是廣泛的,它是原生的angularjs – bryan60