I'm trying to learn about new usages of javascript as a serverside language and as a functional language. Few days ago I heard about node.js and express framework. Then I saw about underscore.js as a set of utility functions. I saw this question on stackoverflow . It says we can use underscore.js as a template engine. anybody know good tutorials about how to use underscore.js for templating, especially for biginners who have less experience with advanced javascript. Thanks

link|improve this question
feedback

3 Answers

In it's simplest form you would use it like:

var html = _.template('<li><%= name %></li>', { name: 'John Smith' });
//html is now '<li>John Smith</li>'   

If you're going to be using a template a few times you'll want to compile it so it's faster:

var template = _.template('<li><%= name %></li>');

var html = [];
for (var key in names) {
    html += template({ name: names[i] });
}

console.log(html.join('')); //Outputs a string of <li> items

I personally prefer the Mustache style syntax. You can adjust the template token markers to use double curly braces:

_.templateSettings.interpolate = /\{\{(.+?)\}\}/g;

var template = _.template('<li>{{ name }}</li>');
link|improve this answer
You mean to use "name" rather than "text" in the second parameter to _.template() right? – erturne Dec 2 '11 at 1:15
Yep, updated thanks – evilcelery Dec 2 '11 at 10:39
feedback

Everything you need to know about underscore template is here. Only 2 things to keep in mind:

  1. <% %> - to execute some code
  2. <%= %> - to print some value in template

That's all about it.

link|improve this answer
I don't understand why anybody would down-vote this, it is the canonical answer and points to the instructions on the project's homepage, it's the classic "teach a man to fish". – Jon z Jan 11 at 17:58
I think they would down vote cause the documentation they provide gives very little in how to mix <% and <%= beyond their singular example and how switching from <%= to print() changes that pattern. Also when using 'interpolate' there are some odd behaviors that would probably make scene with a little more explanation. Again, which is not provided. Though I agree, its a stupid thing do down vote over. – QueueHammer Jan 23 at 4:54
feedback
<!-- Install jQuery and underscore -->

<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="http://documentcloud.github.com/underscore/underscore-min.js"></script>

<!-- Create your template (Note the type="text/html") -->

<script type="text/html" id='usageList'>
<table cellspacing='0' cellpadding='0' border='1' >
        <thead>
            <tr>
                <th>Id</th>
                <th>Name</th>
            </tr>
        </thead>
        <tbody>

        <% _.each(items,function(item,key,list){ %>
            <tr>
                <td><%= key %></td>
                <td><%= item.name %></td>
            </tr>
        <% }) %>
    </tbody>
</table>
</script>

<!-- Create your target -->

<div id="target"></div>

<!-- Write some code to fetch the data and template -->

<script>
    var items = [
        {name:"Alexander"},
        {name:"Barklay"},
        {name:"Chester"},
        {name:"Domingo"},
        {name:"Edward"},
        {name:"..."},
        {name:"Yolando"},
        {name:"Zachary"}
    ]
    var template = $("#usageList").html();
    $("#target").html(_.template(template,{items:items}))
</script>

<!-- Give thanks :) -->
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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