简单的 CRUD 应用程序、客户端列表视图和详细视图。我希望列表视图在服务器上排序,所以我应该在客户端 FireBase 引用上设置优先级。
angular.module('MyApp')
.controller 'ClientsDetailCtrl', ($scope, $routeParams, angularFire) ->
fb = new Firebase('https://myurl.firebaseio.com/clients/' + $routeParams.id)
angularFire(fb, $scope, 'client')
$scope.$watch('client.name', (newValue) ->
fb.setPriority(newValue) if newValue != undefined)
每次 client.name 更改时,我都会在 FireBase ref 上设置优先级。但是,当我返回列表页面时,优先级为空。我认为发生这种情况是因为更改名称会调用 set() 引用,这会清除优先级。
将优先级设置为 client.name 的最简单方法是什么?我可以尝试使用 $timeout,但是当 client.name 之外的值被修改时,它会被覆盖。