Templating in Knockout.js
JavaScript performance comparison
Preparation code
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script src="http://github.com/downloads/SteveSanderson/knockout/jquery.tmpl.js">
</script>
<script src="http://cloud.github.com/downloads/SteveSanderson/knockout/knockout-2.1.0.js">
</script>
<div id="koTest">
<ul data-bind="template: { name: 'item_koTmpl', foreach: items }">
</ul>
</div>
<div id="jqTest" data-bind="template:'item_jqTmpl'">
</div>
<script id="item_koTmpl" type="text/x-jquery-tmpl">
< li data - bind = "text: id" > < /li>
<li data-bind="text: name"></li > < li data - bind = "text: type" > < /li>
</script>
<script id="item_jqTmpl" type="text/x-jquery-tmpl">
jquery template < ul > {
{
each(index, item) items()
}
} < li > $ {
item.id()
} < /li>
<li>${item.name()}</li > < li > $ {
item.type()
} < /li>
{{/each
}
} < /ul>
</script>
<script>
$(function() {
function Item(id, name, type) {
return {
id: ko.observable(id),
name: ko.observable(name),
type: ko.observable(type)
}
}
window.viewModel = {
items: ko.observableArray([new Item(1, "one", "a"), new Item(2, "two", "b"), new Item(3, "three", "a")])
};
});
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
KO native templating NOT bound to a DOM element |
|
pending… |
KO native templating bound to a DOM element |
|
pending… |
jquery templating NOT bound to DOM element |
|
pending… |
jquery templating bound to DOM element |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published by Scott Messinger
- Revision 2: published
- Revision 3: published by Scott Messinger
- Revision 5: published by Scott Messinger
- Revision 6: published by Scott Messinger
- Revision 7: published by Ryan Niemeyer
- Revision 8: published by Michael Best
- Revision 9: published by Michael Best
- Revision 12: published
- Revision 13: published
- Revision 14: published
- Revision 16: published
- Revision 17: published
- Revision 18: published
- Revision 19: published
- Revision 20: published
- Revision 21: published
- Revision 22: published
- Revision 23: published by thelinuxlich
0 comments