2016-02-25 64 views

回答

4

使用OrderBy作爲過濾器在你的控制器來代替:

app.controller('DemoCtrl', ['$scope', '$filter', function($scope, $filter){ 
    $scope.quote.services = $filter('orderBy')($scope.quote.services, 'index'); 
}]); 

所有選項查看filter docs

+0

謝謝,效果很好。我會盡快答覆。 –

+0

很高興聽到,謝謝! – Ties