ember.js - What is the point of the .save() function in ember data? -
what utility .save() serve? don't understand why changes model aren't saved until call function. there reason ever not save changes?
save()
make call server.
it terrible make server calls every time property changed (for example on every keyup), makes sense queue changes , call save when it's ready (for example hitting submit on form).
Comments
Post a Comment