Fields
Methods
-
ajax(settings) : {Object}
-
Master Ajax entry point for all oj.Model and oj.Collection server interactions, when they are using the default sync implementations. oj.ajax passes through to jQuery ajax by default. See http://api.jquery.com/jquery.ajax/ for expected parameters and return value.
Parameters:
Name Type Argument Description settingsObject <optional>
optional ajax settings - Since:
- 1.0.0
Returns:
xhr object- Type
- Object
-
sync(method, model, options) : {Object}
-
Master server access method for all models and collections. Replace oj.sync with a new implementation to customize all oj.Model and oj.Collection server interactions
Parameters:
Name Type Argument Description methodstring "create", "read", "update", "patch", or "delete" modeloj.Model | oj.Collection Model (or Collection to be read) to be read/saved/deleted/created optionsObject <optional>
to control sync
success: called if sync succeeds
error: called if sync fails
others are passed to jQuery
Options that would normally be passed to a customURL callback are also included
- Since:
- 1.0.0
Returns:
xhr object- Type
- Object