I have a array of objects, in client side.
The object in array look like this:
{
code: 0,
short_name: 'a',
type: 1
}
I try to filter this array to 2 arrays:
- With type === 1
- With type !== 1
I did this:
$scope.array1 = $filter('filter')(data, {type: 1}, true);
$scope.array1 = $filter('filter')(data, {type: !1});
But the not-equal didn't work... what can I do?
Thank you!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…