Aquí está el código que no funciona: Demo: http://jsfiddle.net/8dt94/63/
<div ng-controller="MyCtrl">
<input type="text" ng-model="searchText" />
<ul ng-repeat="strVal in arrVal|orderBy|filter:searchText" >
<li>{{strVal}}</li>
</ul>
</div>
var app=angular.module('myApp', []);
app.controller('MyCtrl', function ($scope,$filter) {
$scope.arrVal = ['one','two','three','four','five','six'];
});
Respuestas:
Puede ordenar por un método, por lo que puede usar el método toString
<ul ng-repeat="strVal in arrVal | orderBy:'toString()' | filter:searchText">
fuente
[2,5,3,1,6, 33]
manera, así que en lugar detoString()
eso, usévalueOf()
y funcionó perfectamente. Gracias por la solucionEscribe un filtro personalizado :
app.filter('mySort', function() { return function(input) { return input.sort(); } });
HTML:
<ul ng-repeat="strVal in arrVal|filter:searchText|mySort">
Violín .
fuente