0.0.4
ember install ember-auto-save
An Ember-cli addon that provides auto-save functionality for Ember applications.
This is a computed property that provides an autoSaveProxy
object.
The autoSaveProxy
object will proxy all get()
and
set()
requests to the model
property. Setting
properties on the autoSaveProxy
object will be automatically saved.
You can use the AutoSaveComponent
to wrap a model
and provide an autoSaveProxy
object.
The AutoSaveMixin overrides the setUnknownProperty
method, and
triggers the save
method when properties are set on the model
.
save()
method
Use the save()
method to save the model
using the
Ember.js debounce()
method.