所以我有一个大的firebase列表,我想使用我绑定到的另一个firebase对象来过滤它。如果我不将"搜索"对象绑定到firebase,它会过滤得很好,但当我绑定到firebase时,它会返回零结果。
我的控制器:
.controller('TestResultsCtrl', ['$scope', 'syncData', '$routeParams', '$firebase', '$filter', function($scope, syncData, $routeParams, $firebase, $filter) {
$scope.id = $routeParams.id;
syncData('tests/' + $routeParams.id).$bind($scope, 'test');
syncData('tests/' + $routeParams.id + '/specs').$bind($scope, 'search');
syncData('diagnoses').$bind($scope, 'all_diagnoses');
}])
我的观点:
<a href="" ng-repeat="diagnoses in all_diagnoses | orderByPriority | filter:search" class="list-group-item">{{diagnoses.title}}</a>
示例"搜索"对象:
{
"constant": true,
"intermittent": true,
"localized": true,
"referred": false,
"region": "hip"
}
"诊断"火球目标/列表示例:
{
"constant": true,
"intermittent": true,
"localized": true,
"referred": false,
"region": "hip",
"title": "Hip Osteoarthritis"
},
{
"constant": true,
"intermittent": false,
"localized": false,
"referred": true,
"region": "neck",
"title": "Whiplash"
}
如何正确筛选
…并提前感谢您!
问题可能是$bind返回的对象包含Angular试图过滤的几个$方法。
试试这样的。。。
syncData('tests/' + $routeParams.id + '/specs').$bind($scope, 'searchDirty');
$scope.$watch('searchDirty', function (search) {
$scope.search = angular.fromJson(angular.toJson(search));
});
这将去掉任何$methods/values,并返回数据的原始值。