, 내가 변경 키를 얻는 방법
$scope.$watch('bigObject', function(newVal, oldVal, scope) { //Watch the whole object
console.log("The key that changed was: " + key);
}, true); //Deep watch
를 얻으려면?
예 출력 : 이것에 대한 The key that changed was: bigObject.users.john.birthday
내가 ([두 개체 사이의 일반 깊은 DIFF]을 사용하여 생각하는 것 https://stackoverflow.com/a/25651677/ 2435473) –