There is an object. It is dynamic and the data in it are constantly changing, say so.
$scope.object = {
"className": "?????",
"property": [
{
"name": "???"
},
{
"prado": "???"
}
]
}
What needs? And it is necessary for the project $scope.object
monitor any change in, at all levels of the object. Maybe there is a method similar to the $watchCollection
, only advanced? Or another way to keep track of?
I would be glad of any tip. Thank you in advance!