const template = require('art-template'); const path = require('path'); // 时间 const sd = require('silly-datetime'); //设置模板根目录 template.defaults.root = path.join(__dirname, 'views'); // 设置模板根目录 template.defaults.extname = '.html' // 向模板中导入变量,以便在模板中使用 template.defaults.imports.sd = sd; const html = template('06.art',{ time: new Date() }); console.log(template('07',{})); console.log(html);
标签:const,配置,html,template,path,根目录,模板 From: https://www.cnblogs.com/wangxianwen/p/16723444.html