我是靠谱客的博主 野性月饼,最近开发中收集的这篇文章主要介绍nodejs(九)art-template模板引擎,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

nodejs中可以使用模板引擎,其中art-template既可以用在前端,也可以用在服务器端,首先看一下前端用法

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<!--
作循环
{{each hobbies}} {{ $value }} {{/each}} -->
<!--浏览器中引入这个文件-->
<script src="../node_modules/art-template/lib/template-web.js"></script>
<script type="text/template" id="tpl">
hello {{name}}
</script>
<script>
var ret = template('tpl', {
name: 'Jack'
})
console.log(ret)
</script>
</body>
</html>

后端使用首先引入依赖
npm install art-template -S

var template = require('art-template')

render函数有两个参数,第一个是输入的字符串,第二个是替换的对象的值

var ret = template.render('hello {{name}}', {
name: 'jack'
})
console.log(ret)

运行结果
运行结果

最后

以上就是野性月饼为你收集整理的nodejs(九)art-template模板引擎的全部内容,希望文章能够帮你解决nodejs(九)art-template模板引擎所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部