When AngularJS triggers an $onEval, is there any way to immediately tell what values in this scope have changed?

StackOverflow https://stackoverflow.com/questions/7354870

  •  28-10-2019
  •  | 
  •  

Question

I want to sync changes to the server automatically. Currently I'm detecting changes in a scope.$onEval handler by JSON serializing the application state and comparing that to a previously serialized copy, using diff-match-patch.

I was wondering if AngularJS has anything built in to make this more efficient.

Was it helpful?

Solution

You could use multiple $watch'es instead of a single $onEval (note that $watch can take a function as an argument instead of a string/expression, and in version >=0.10.0 the watched values are compared using angular.Object.equals). Other than that, I don't know any AngularJS mechanism that would be useful for this.

OTHER TIPS

I am working on something similar. Like @psyho suggested I am using $watch to catch the changes.

scope.$watch("dataObject",function (newValue, oldValue) {
    //calculate changes
    //send the changes to the server
});

I then use the logic from jquery diff to calculate what changes were made.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top