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
|
feedback
|
|
In it's simplest form you would use it like:
If you're going to be using a template a few times you'll want to compile it so it's faster:
I personally prefer the Mustache style syntax. You can adjust the template token markers to use double curly braces:
| |||||
feedback
|
|
Everything you need to know about underscore template is here. Only 2 things to keep in mind:
That's all about it. | |||||
feedback
|
| ||||
|
feedback
|