1
我想傾聽對對象的特定孩子所做的更改。 例如。 我存儲在火力數據
users: {
user1:{
info:{ name: 'Jon', age:'21'},
otherThings:{}
},
user2:{
info:{ name: 'Mark', age:'20'},
otherThings:{}
}
}
現在,我可以通過
$scope.userObj = $firebase(userRef).$asObject();
$scope.userObj.$watch(function() {
console.log("data changed!");
});
收聽user1的變化,但有什麼辦法來聽的變化,只有當其子即$ scope.userObj .name更改?
它應該只與userObj,userObj.child('name')或類似的東西。