can
Version:
MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.
51 lines (35 loc) • 1.35 kB
Markdown
Binding Live Binding
can.mustache.pages 5
Live binding refers to templates which update themselves
as the data used in the mustache tags change.
It's very common as the page is interacted with that the underlying
data represented in the page changes. Typically, you have callbacks
in your AJAX methods or events and then update the content of your
controls manually.
In this example, we have a simple user welcome screen.
<h1>Welcome {{user}}!</h1>
<p>
{{#if messages}}
You have {{messages}} new messages.
{{else}}
You have no messages.
{{/messages}}
</p>
var data = new can.Map({
user: 'Tina Fey',
messages: 0
});
var template = can.view("#template", data);
The template evaluates the `messages` and adds the hooks for live binding automatically.
Since we have no message it will render:
<h1>Welcome Tina Fey!</h1>
<p>You have no messages.</p>
Now say we have a request that updates
the `messages` attribute to have `5` messages. We
call the [attr](can.Map.prototype.attr) method on the [can.Map](can.Map) to update
the attribute to the new value.
data.attr('messages', 5)
After [can.Map] receives this update, it will automatically
update the paragraph tag to reflect the new value.
<p>You have 5 new messages.</p>
For more information visit the [can.Map] documentation.
can.mustache.