html-模板引擎

1.安装art-template模板引擎

npm install art-template

2.模板引擎的使用

<script src='node_modules/art-template/lib/template-web.js'></script>

<script type='text/template' id='temp'>
	my name is {{ username }}
</script>

<script>
	var res = template('temp', {
		username: 'xyz'
	})
	console.log(res)
</script>
posted @ 2021-04-10 21:57  程序员陈师兄cxycsx  阅读(239)  评论(0编辑  收藏  举报