I have to sort an array of objects based on the user input for which I call a function on ng-change
. The array needs to be sorted with respect to name
in the array of objects.
Array is
[{"id":1,"name":"android","taggings_count":5,"category":null},{"id":2,"name":"ruby","taggings_count":7,"category":null},{"id":3,"name":"java","taggings_count":3,"category":null}]
Function signature is
$scope.searchTags = (tagText) ->
where tagText
is the argument which I receive from ng-change
So, how can the user input i.e, tagText
be mapped to name
attribute in the array and compared ?
You can use orderBy with custom comparer, something like in next sample. Here on top would be object where name started with entered text