模板引擎(模板配置)

模板配置

  1. 向模板中导入变量 template.dafaults.imports.变量名 = 变量值;
    dateformat,一个处理时间的函数.
const template = require('art-template');
const path = require('path');
const dateFormat = require('dateFormat');

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

//导入模板变量(固定写法)
template.defaults.imports.dateFormat = dateFormat;

const html = template(views, {
	time: new Date()
});

console.log(html);
{{ dateFormat(time, 'yyyy-mm-dd') }}
  1. 设置模板根目录 template.defaults.root = 模板目录
//设置模板的根目录
template.defaults.root = path.join(__dirname, 'views');

//导入模板变量(固定写法)
template.defaults.imports.dateFormat = dateFormat;
//渲染模板的时候,就不用写路径了,直接写模板名字的就可以了
const html = template('06.art', {
	time: new Date()
	//相当于new time = new Date()
});
  1. 设置模板后缀template.defaults.extname = ‘.art’
//配置模板的默认后缀
template.defaults.extname = '.art';
const html = template('06', {
	time: new Date()
	//相当于new time = new Date()
});
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值