ractive.observe()
edit this pageObserves the data at a particular keypath. Unless specified otherwise, the callback will be fired immediately, with undefined
as oldValue
. Thereafter it will be called whenever the observed keypath changes.
Note that you can observe keypath patterns...
ractive.observe( 'items.*.status', function ( newValue, oldValue, keypath ) {
var index = /items.(\d+).status/.exec( keypath )[1];
alert( 'item ' + index + ' status changed from ' + oldValue + ' to ' + newValue );
});
...or multiple space-separated keypaths simultaneously:
ractive.observe( 'foo bar baz', function ( newValue, oldValue, keypath ) {
alert( keypath + ' changed from ' + oldValue + ' to ' + newValue );
});
See Observers for more detail.
ractive.observe( keypath, callback[, options ])
Returns an object with a
cancel
method, for cancelling the observerkeypath
String
The keypath to observe, or a group of space-separated keypaths. Any of the keys can be a
*
character, which is treated as a wildcard.callback
Function
The function that will be called, with
newValue
,oldValue
andkeypath
as arguments (see Observers for more nuance regarding these arguments), whenever the observed keypath changes value. By default the function will be called withractive
asthis
. Any wildcards in the keypath will have their matches passed to the callback at the end of the arguments list as well.options
Object
init
Boolean
Defaults to
true
. Whether or not to initialise the observer, i.e. call the function with the current value ofkeypath
as the first argument andundefined
as the seconddefer
Boolean
Defaults to
false
, in which case observers will fire before any DOM changes take place. Iftrue
, the observer will fire once the DOM has been updated.context
Defaults to
ractive
. The context the observer is called in (i.e. the value ofthis
)ractive.observe( map[, options ])
Returns an object with a
cancel
method, for cancelling all observersmap
Object
A map of
keypath: observer
pairsoptions
Object
As above.