使用XML XSLT,可以在HTML中构建一个漂亮的模板,将其转换为XSLT并使用来自服务器的xml数据来动态填充客户端的小部件。
JSON和JSONP非常适合与服务器端交互并在JS中操作数据。在渲染JSON数据时,我见过的大多数示例都使用JS来连接一个丑陋的字符串,并设置某个元素的innerHTML来渲染它。
是否有一种简单的浏览器兼容方式来创建html小部件并使用不涉及字符串敲击或构建DOM元素负载的JSON填充它们?
答案 0 :(得分:1)
您应该看到John Resiq撰写的这篇博文:JavaScript Micro-Templating
它有一个简单的微模板代码,您可以重复使用。它是这样的:
// Simple JavaScript Templating
// John Resig - http://ejohn.org/ - MIT Licensed
(function(){
var cache = {};
this.tmpl = function tmpl(str, data){
// Figure out if we're getting a template, or if we need to
// load the template - and be sure to cache the result.
var fn = !/\W/.test(str) ?
cache[str] = cache[str] ||
tmpl(document.getElementById(str).innerHTML) :
// Generate a reusable function that will serve as a template
// generator (and which will be cached).
new Function("obj",
"var p=[],print=function(){p.push.apply(p,arguments);};" +
// Introduce the data as local variables using with(){}
"with(obj){p.push('" +
// Convert the template into pure JavaScript
str
.replace(/[\r\t\n]/g, " ")
.split("<%").join("\t")
.replace(/((^|%>)[^\t]*)'/g, "$1\r")
.replace(/\t=(.*?)%>/g, "',$1,'")
.split("\t").join("');")
.split("%>").join("p.push('")
.split("\r").join("\\'")
+ "');}return p.join('');");
// Provide some basic currying to the user
return data ? fn( data ) : fn;
};
})();
所以你的模板会出现在标记中:
<script type="text/html" id="item_tmpl">
<div id="<%=id%>" class="<%=(i % 2 == 1 ? " even" : "")%>">
<div class="grid_1 alpha right">
<img class="righted" src="<%=profile_image_url%>"/>
</div>
<div class="grid_6 omega contents">
<p><b><a href="/<%=from_user%>"><%=from_user%></a>:</b> <%=text%></p>
</div>
</div>
</script>
使用它:
var results = document.getElementById("results");
results.innerHTML = tmpl("item_tmpl", dataObject);
要明确 - 以上示例来自博客文章,不是我的代码。点击链接获取更多信息。
答案 1 :(得分:1)
正如其他答案中所提到的,您正在寻找的是基于javascript的模板语言。这个related question有一个很好的清单。为了突出显示一对,mustache干净,简单,并移植到许多语言。我相信它被Twitter使用。 Google Closure有template language,可以在JavaScript和Java中使用。这显然是谷歌的战斗测试。
其他主要的JS库都有模板作为插件或库的一部分。我知道jQuery至少有一个插件,并且正在计划v1.5的路线图。 Dojo有clone of Django's templating language看起来很不错。
还有其他人,但我认为这将成为作物的精华。
我实际上并没有使用任何这些,因为我使用的是本土的,但我可以告诉你,他们非常善于使用,我强烈建议他们使用字符串连接或在服务器上做更多的工作。
答案 2 :(得分:0)
你可以使用jQuery和某种类型的jQuery插件来模板。例如http://ivorycity.com/blog/jquery-template-plugin/(看一下这个页面,有一些不错的样本)