}
When developing modern HTML applications, you often write a lot of HTML fragments programmatically. You concatenate HTML tags and dynamic data, and insert the resulting UI markup into the DOM. Here is a random code example of this approach:
1
2
3
4
5
6
7
8
9
|
$.each(messages.reverse(),
function
(index, message) {
$(
'#messageList'
).append(
'<li><span class="list-title">'
+
message.userName +
'</span>'
+
'<abbr class="list-timestamp" title="'
+
message.datePosted +
'"></abbr>'
+
'<p class="list-text">'
+ message.messageText +
'</p></li>'
);
}
});
|
The proliferation of this kind of code throughout your application comes with some downsides. The tight coupling of UI and data logic doesn’t promote separation of concerns and reuse. It makes your application harder to write and harder to maintain.
HTML templates address this issue by decoupling the UI definition (HTML markup) from the data. There are a number of HTML template solutions out there: jQuery Templates, Underscore.js, andMustache.js to name a few. Mustache.js is a popular choice because of its powerful syntax and fast rendering.
Mustache is a “logic-less” template syntax. “Logic-less” means that it doesn’t rely on procedural statements (if, else, for, etc.): Mustache templates are entirely defined with tags. Mustache is implemented in different languages: Ruby, JavaScript, Python, PHP, Perl, Objective-C, Java, .NET, Android, C++, Go, Lua, Scala, etc. Mustache.js is the JavaScript implementation.
In this article, we take a quick tour of some of the capabilities of Mustache.js.
To start using Mustache.js, simply add a script tag to your html file pointing to mustache.js which is available here.
You can run all the examples below here.
This is a self-explanatory example. Note that:
1
2
3
4
5
6
7
8
|
var
person = {
firstName:
"Christophe"
,
lastName:
"Coenraets"
,
blogURL:
"http://coenraets.org"
};
var
template =
"<h1>{{firstName}} {{lastName}}</h1>Blog: {{blogURL}}"
;
var
html = Mustache.to_html(template, person);
$(
'#sampleArea'
).html(html);
|
Result:
Blog: http://coenraets.org
Same as sample 1, except that we get the data from an Ajax service call.
1
2
3
4
5
|
$.getJSON(
'json/data.json'
,
function
(data) {
var
template =
"<h1>{{firstName}} {{lastName}}</h1>Blog: {{blogURL}}"
;
var
html = Mustache.to_html(template, data);
$(
'#sampleArea'
).html(html);
});
|
Result:
Blog: http://johnsmith.com
Same as sample 2, except that we read the template from the main HTML file.
1
2
3
4
5
|
$.getJSON(
'json/data2.json'
,
function
(data) {
var
template = $(
'#personTpl'
).html();
var
html = Mustache.to_html(template, data);
$(
'#sampleArea'
).html(html);
});
|
The template is defined as follows in index.html:
1
2
3
4
|
<
script
id
=
"personTpl"
type
=
"text/template"
>
<
h1
>{{firstName}} {{lastName}}</
h1
>
<
p
>Blog URL: <
a
href
=
"{{blogURL}}"
>{{blogURL}}</
a
></
p
>
</
script
>
|
Result:
Blog URL: http://lisajones.com
NOTE: Sample 3 represents the way templates are being used in many dynamic Web applications:
In the remaining of this article, we declare the data and the template in variables to keep the examples self-contained. Remember to refer to sample 3 for a traditional setup when using templates in a dynamic Web application.
1
2
3
4
|
var
data = {name:
"John Smith"
, skills: [
'JavaScript'
,
'PHP'
,
'Java'
]};
var
tpl =
"{{name}} skills:<ul>{{#skills}}<li>{{.}}</li>{{/skills}}</ul>"
;
var
html = Mustache.to_html(tpl, data);
$(
'#sampleArea'
).html(html);
|
Result:
1
2
3
4
5
6
7
8
9
10
11
12
|
var
data = {
employees: [
{ firstName:
"Christophe"
,
lastName:
"Coenraets"
},
{ firstName:
"John"
,
lastName:
"Smith"
}
]};
var
template =
"Employees:<ul>{{#employees}}"
+
"<li>{{firstName}} {{lastName}}</li>"
+
"{{/employees}}</ul>"
;
var
html = Mustache.to_html(template, data);
$(
'#sampleArea'
).html(html);
|
Result:
You can use the dot notation to access object properties.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
var
person = {
firstName:
"Christophe"
,
lastName:
"Coenraets"
,
blogURL:
"http://coenraets.org"
,
manager : {
firstName:
"John"
,
lastName:
"Smith"
}
};
var
template =
"<h1>{{firstName}} {{lastName}}</h1><p>{{blogURL}}</p>"
+
"Manager: {{manager.firstName}} {{manager.lastName}}"
;
var
html = Mustache.to_html(template, person);
$(
'#sampleArea'
).html(html);
|
Result:
http://coenraets.org
Manager: John Smith
Same as sample 6, except that we “dereference” the manager object to make it easier to access its properties (without having to use the dot notation).
1
2
3
4
5
6
7
8
9
10
11
12
13
|
var
person = {
firstName:
"John"
,
lastName:
"Smith"
,
blogURL:
"http://johnsmith.com"
,
manager : {
firstName:
"Lisa"
,
lastName:
"Jones"
}
};
var
tpl =
"<h1>{{firstName}} {{lastName}}</h1><p>{{blogURL}}</p>"
+
"{{#manager}}Manager: {{firstName}} {{lastName}}{{/manager}}"
;
var
html = Mustache.to_html(tpl, person);
$(
'#sampleArea'
).html(html);
|
Result:
http://johnsmith.com
Manager: Lisa Jones
Templates can reference functions like totalPrice in this example.
1
2
3
4
5
6
7
8
9
10
11
|
var
product = {
name:
"FooBar"
,
price: 100,
salesTax: 0.05,
totalPrice:
function
() {
return
this
.price +
this
.price *
this
.salesTax;
}
};
var
template =
"<p>Product Name: {{name}}</p>Price: {{totalPrice}}"
;
var
html = Mustache.to_html(template, product);
$(
'#sampleArea'
).html(html);
|
Result:
Product Name: FooBar
Price: 105
Templates can include conditional sections. Conditional sections only render if the condition evaluates to true. A conditional section begins with {{#condition}} and ends with {{/condition}}. “condition” can be a boolean value or a function returning a boolean.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
var
data = {
employees: [
{ firstName:
"Christophe"
,
lastName:
"Coenraets"
,
fullTime:
true
,
phone:
"617-123-4567"
},
{ firstName:
"John"
,
lastName:
"Smith"
,
fullTime:
false
,
phone:
"617-987-6543"
},
{ firstName:
"Lisa"
,
lastName:
"Jones"
,
fullTime:
true
,
phone:
"617-111-2323"
},
]};
var
tpl =
"Employees:<ul>{{#employees}}<li>{{firstName}} {{lastName}}"
+
"{{#fullTime}} {{phone}}{{/fullTime}}</li>{{/employees}}</ul>"
;
var
html = Mustache.to_html(tpl, data);
$(
'#sampleArea'
).html(html);
|
Result:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
var
data = {
firstName:
"Christophe"
,
lastName:
"Coenraets"
,
address:
"1 Main street"
,
city:
"Boston"
,
state:
"MA"
,
zip:
"02106"
};
var
template =
"<h1>{{firstName}} {{lastName}}</h1>{{>address}}"
;
var
partials = {address:
"<p>{{address}}</p>{{city}}, {{state}} {{zip}}"
};
var
html = Mustache.to_html(template, data, partials);
$(
'#sampleArea'
).html(html);
|
Result:
1 Main street
Boston, MA 02106
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
var
data = { depts: [
{ name:
"Engineering"
,
employees: [
{firstName:
"Christophe"
, lastName:
"Coenraets"
},
{firstName:
"John"
, lastName:
"Smith"
}]
},
{ name:
"Sales"
,
employees: [
{firstName:
"Paula"
, lastName:
"Taylor"
},
{firstName:
"Lisa"
, lastName:
"Jones"
}]
}]
};
var
tpl =
"{{#depts}}<h1>{{name}}</h1>"
+
"<ul>{{#employees}}{{>employee}}{{/employees}}</ul>{{/depts}}"
;
var
partials = {employee:
"<li>{{firstName}} {{lastName}}</li>"
};
var
html = Mustache.to_html(tpl, data, partials);
$(
'#sampleArea'
).html(html);
|
Result:
You can run all the examples here.
转自:http://coenraets.org/blog/2011/12/tutorial-html-templates-with-mustache-js/