Fork me on GitHub
Show:

Model

Extends Backbone.Model
Defined in: ../src/model.js:7

Summary

The base model class for Aeris JS Libraries

See http://backbonejs.org/#Model for documentation

Constructor

aeris.Model

Defined in ../src/model.js:7

Syntax

aeris.Model

(
  • opt_attrs
  • opt_options
)

Summary

Parameters:

  • opt_attrs Object=
  • opt_options Object=
    • validate Boolean=

      If set to true, model will immediately check validation on instantiation.

Methods

bindAttributesTo

Defined in ../src/model.js:226

Syntax

bindAttributesTo

(
  • target
  • attrs
)

Summary

Keep this model updated with values from the target model.

Immediately updates the model with the specified attributes, and updates this model whenever the target model's attributes change.

Parameters:

clone

Defined in ../src/model.js:210

Syntax

clone

(
  • opt_attrs
  • opt_options
)
Model

Summary

Create a copy of the model.

Parameters:

  • opt_attrs Object=

    Attributes to set on the cloned model.

  • opt_options Object=

    Options to pass to cloned mode.

Returns:

fetch

Syntax

fetch

()

Summary

Fetch model data.

get

Syntax

get

(
  • attribute
)
* protected

Summary

Parameters:

Returns:

*:

getAtPath

Defined in ../src/model.js:180

Syntax

getAtPath

(
  • path
)
*|undefined

Summary

Returns a deep-nested property of a model attribute.

Example: model.set('deepObj', { levelA: { levelB: { foo: 'bar' } } });

model.getAtPath('deepObj.levelA.levelB.foo'); // 'bar'

Returns undefined if the path cannot be resolved.

Parameters:

Returns:

has

Syntax

has

() Boolean protected

Summary

Returns:

isValid

Defined in ../src/model.js:120

Syntax

isValid

()

Summary

Validate the model's attributes.

normalize_

Defined in ../src/model.js:162

Syntax

normalize_

(
  • attrs
)
Attrs protected

Summary

This method is called every time attributes are set on the model.

Override to provide any additional processing needed for options object structure, etc.

Parameters:

Returns:

Attrs:

Normalized attrs.

off

Syntax

off

()

on

Syntax

on

()

Summary

Bind an event handler to the object. See Backbone.Events#on

onValidationError_

Defined in ../src/model.js:107

Syntax

onValidationError_

(
  • model
  • error
)
private

Summary

Handle 'invalid' events thrown by the model.

Parameters:

Syntax

() protected

Summary

parse

Syntax

parse

() protected

Summary

proxyEvents

Syntax

proxyEvents

(
  • obj
  • =}
  • opt_ctx
)
protected

Summary

Proxies all events from another {aeris.Event} object. In other words, all the events that you trigger, I'm gonna trigger too.

Passes along the original object as the first argument when triggering proxied events.

Parameters:

  • obj Events=

    The object to proxy.

  • =} Function(string, Array):Object

    opt_callback A callback function to customize the proxied event. Should return on object with 'topic' and 'args' properties.

       Example:
         parent.proxy(child, function(topic, args) {
           return {
             topic: 'child:' + topic,
             args: [child].concat(args)
           }
         });
    
       ...would trigger all child events, with a topic prepended
       with 'child:', and with the child object inserted as the first
       argument.
  • opt_ctx Object=

    A context in which to call the opt_callback function. Defaults to this.

removeProxy

Syntax

removeProxy

() protected

Summary

End any proxies that have been wrapped around this {Events} object.

set

Inherited from Backbone.Model but overwritten in ../src/model.js:129

Syntax

set

(
  • config
)
protected

Summary

Normalize attributes before setting

Parameters:

sync

Inherited from Backbone.Model but overwritten in ../src/model.js:360

Syntax

sync

(
  • method
  • model
  • options
)
protected

Summary

Parameters:

toJSON

Syntax

toJSON

() Object

Summary

Returns:

Object:

A shallow copy of the model's attributes.

unset

Syntax

unset

(
  • attribute
)
protected

Summary

Parameters:

updateWithAttributesOf_

Defined in ../src/model.js:252

Syntax

updateWithAttributesOf_

(
  • target
  • attrs
)
private

Summary

Update the attributes of the model with attributes from another model.

Parameters:

validate

Syntax

validate

() protected

Summary

Properties

attributes

Syntax

attributes

Object protected

Summary

cid

Syntax

cid

Number | String protected

Summary

defaults

Inherited from Backbone.Model but overwritten in ../src/model.js:42

Syntax

defaults

Unknown

Summary

id

Syntax

id

Number | String protected

Summary

idAttribute

Inherited from Backbone.Model but overwritten in ../src/model.js:36

Syntax

idAttribute

Unknown

Summary

options_

Defined in ../src/model.js:48

Syntax

options_

Object private

Summary

The options used when constructing the model.

Events

add

Defined in ../src/model.js:85

Syntax

add

Summary

When a model is added to a {aeris.Collection}.

Event Payload:

change

Defined in ../src/model.js:70

Syntax

change

Summary

When a model's attribute changes

Event Payload:

change:[attribute]

Defined in ../src/model.js:76

Syntax

change:[attribute]

Summary

When a model's attribute changes, where [attribute] is the name of the attribute.

Event Payload:

remove

Defined in ../src/model.js:94

Syntax

remove

Summary

When a model is removed from a {aeris.Collection}.

Event Payload: