模板引擎

模板引擎_第1张图片

// 导入模板引擎
const template = require('art-template');
const path = require('path');


const views = path.join(__dirname, 'views', 'index.art');

// template方法是用来拼接字符串的
// 1. 模板路径 绝对路径
// 2. 要在模板中显示的数据 对象类型
// 返回拼接好的字符串
const html = template(views, {
    name: '张三',
    age: 20
})

console.log(html);

<!DOCTYPE html>
<html lang="en">
<head>
	<mete charset = "UTF-8"
<title>Title of the document</title>
</head>

<body>

{{ name }}
{{ age }}
</body>

</html>

你可能感兴趣的:(模板引擎学习)