在js里的ejs模板引擎使用
1.首先需要在页面里引用ejs.min.js。
2.将你的模板使用ejs编写,并存成后缀名.stmpl;(可能需要在打包工具里做些处理)
3.在js里使用require引入xxx.stmpl;
const template = require('./test.stmpl');
4.渲染模板引擎,拿到字符串
const html = ejs.render(template, { data: data // 需要往模板里传的数据 }); console.log(html);
ok,到这里已经完事了