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 angular has anything built in to make this more efficient.
|
feedback
|
|
I am working on something similar. Like @psyho suggested I am using $watch to catch the changes.
I then use the logic from jquery diff to calculate what changes were made. | |||
|
feedback
|
|
You could use multiple $watch'es instead of a single | |||
|
feedback
|