I want to loop a json array using angularjs,
<p class="gwc-p mar-t20" ng-repeat="shopdata in cartinfo.shopList" >
</p>
But is there any way to loop the flashback?
为情所困2017-05-15 17:01:17
Try this:
<p class="gwc-p mar-t20" ng-repeat="shopdata in cartinfo.shopList.slice().reverse()" ></p>
Or declare a filter...
js:
app.filter('reverse', function() {
return function(items) {
return items.slice().reverse();
};
});
view:
<p class="gwc-p mar-t20" ng-repeat="shopdata in cartinfo.shopList | reverse" ></p>
迷茫2017-05-15 17:01:17
<p class="gwc-p mar-t20" ng-repeat="shopdata in cartinfo.shopList | orderBy:shopId:reverse"></p>