artTemplate 在官网上面 template.js (简洁语法版, 2.7kb) 和 template-native.js (原生语法版, 2.3kb)
这两个突然都下载不了了。找了好多的地方都没有下载的。后来各种查找,发现在官网上面只是换了个名字。
https://www.awesomes.cn/repo/aui/arttemplate进入这个网址。
点击下载 。会下载一个压缩包。在压缩包里面lib文件夹template-web.js 就是以前的简洁版js。
<script src="/static/js/template-web.js" th:src="@{/js/template-web.js}" charset="utf-8"></script><script id="menu" type="text/html">
{{if code == 200}}
{{each data as value}}
<li>
<a href="javascript:;">
<i class="iconfont"></i>
<cite>订单管理</cite>
<i class="iconfont nav_right"></i>
</a>
</li>
{{/each}}
{{/if}}
</script>var html = template('menu', response);
$('#nav').html(html);版权声明:本文为tavatimsa原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。