vote up 1 vote down star

Has anyone ever worked with a system of passing back say, some JSON data and using a javascript routine to generate the HTML to save on bandwidth?

What methods are there and are there any templating systems available?

flag

39% accept rate

3 Answers

vote up 3 vote down

Start with John Resig's JavaScript Micro-Templating.

link|flag
vote up 2 vote down

Some like it, some hate it, but you can create templates of HTML in string form within your base application package (e.g., the js files included in the main page.)

var fooTemplate = "<div class='%div_class_parent%'>"+
                    "<div class='%div_class_child%'/>"+
                  "</div>";

then you just load that into an existing DOM node using the innerHTML method.

document.getElementById('someNode').innerHTML = parseFooTemplate();

where parseFooTemplate returns fooTemplate with the %% elements replaced with correct data that was returned from the JSON.

This is just one of many ways to go about it. The dojo toolkit has their own way where widgets can have a HTML template behind the scenes. There's too many ways to enumerate here.

link|flag
vote up 1 vote down

To generate HTML basing on JSON you will need some template engine for javascript
I would reccomend Zparse template engine http://code.riiv.net/zparse/ it is really great - i using it a lot.

The best part - you can extend it easily by declaring your own tags.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.