我从父$scope.Visits
获得controller
,然后在每个ng-repeat
实例中通过Visits
拥有自己的范围并拥有controller
。每个实例都在自己的控制器中获取来自Employee
的{{1}}对象。但问题是,当我从firebase-database
更改Employee
对象的数据时,它不会更改视图中的数据,但是当我第二次更改时,它会显示先前的更改但不显示当前更改
我从AngularFire中的firebase-database
中拉出一个对象,如下所示
firebase-database
这是我的HTML
var empRefIN = firebase.database().ref('Employees/' + $scope.VMS.$id + '/' + Object.keys($scope.visit.Employee)[0])
$scope.employeeINDetail = $firebaseObject(empRefIN);