admin管理员组文章数量:1343908
Could you please explain me, how do templating engines in JavaScript work? Thank you.
JSON
{ "color" : "red"}
Template
<strong><%=color%></strong>
Result
<strong>Red</strong>
Could you please explain me, how do templating engines in JavaScript work? Thank you.
JSON
{ "color" : "red"}
Template
<strong><%=color%></strong>
Result
<strong>Red</strong>
Share
Improve this question
asked Apr 19, 2010 at 18:15
Randy GurmentRandy Gurment
1772 silver badges6 bronze badges
2
- Your question is not very clear. Can you provide more context? – Vivin Paliath Commented Apr 19, 2010 at 18:17
- 2 I think that in general the approach for making a template engine is to select the appropriate algorithms and implement them using best-practice techniques to achieve the desired result. – Pointy Commented Apr 19, 2010 at 18:19
3 Answers
Reset to default 9As a starting point I would remend you to give a look to the String.prototype.replace
method and specially using its callback function:
function replaceTokens(str, replacement) {
return str.replace(/<\%=([^%>]+)\%>/g, function (str, match) {
return replacement[match];
});
}
var input = "<strong><%=color%></strong>";
replaceTokens(input, { "color" : "Red"});
// returns <strong>Red</strong>
replaceTokens("<%=var1%> <%=var2%>", { "var1" : "Hello", "var2": "world!"});
// returns "Hello world!"
Give a look to these articles:
- Search and Don't Replace
- John Resig's Micro-Templating Engine
- Better JavaScript Templates (JSP-like syntax)
- jQuery Templates Proposal
They may vary by implementation, but the one you're talking about looks like it works by doing the following:
Parse the page looking for keys in
<%= %>
tagsMatch the key to the key/value pair in the JSON
Replace the tags/key with the value.
It's not very different from other templating solutions (at the conceptual level).
{ "color" : "red"}
Specifies a color
attribute with the value red
.
<strong><%=color%></strong>
Means "Use the value of color
wherever I have <%=color%>
. Based on wahat you have, the templating-engine probably walks the DOM and finds nodes that have values that match <%=somestring%>
. Then, it checks to see if there is an attribute that matches the somestring
value. If there is one, it replaces the value of <%=somestring%>
with the value defined in the JSON (which, in this case is red
).
This finally gives you:
<strong>Red</strong>
本文标签: How do templating engines in JavaScript workStack Overflow
版权声明:本文标题:How do templating engines in JavaScript work? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737391a2530258.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论