当前位置: 首页 > 工具软件 > Nunjucks > 使用案例 >

Nunjucks笔记

齐典
2023-12-01

https://nunjucks.bootcss.com/getting-started.html

 

1。 安装

npm install nunjucks

 

2。使用

import nunjucks from 'nunjucks';

var app = express();

nunjucks.configure('views', {
    autoescape: true,
    express: app,
noCache: true //每次改动html的文件都要重启服务器。因为有缓存。设置不缓存后解决。 });
//在 node 端,'views' 为相对于当前工作目录 (working directory) 的路径。在浏览器端则为一个相对的 url,最好指定为绝对路径 (如 '/views')。 app.get('/', function(req, res) { res.render('index.html'); });

 

转载于:https://www.cnblogs.com/flyerya/p/11432420.html

 类似资料: