gpt4 book ai didi

node.js - PugJs - 找不到模板文件/忽略目录

转载 作者:搜寻专家 更新时间:2023-11-01 00:16:34 26 4
gpt4 key购买 nike

我有一个应该输出少量内容的简单应用程序。我使用 NodeJs、Express 和 Pug

const pug = require('pug');
const express = require('express');
const app = express();

const indexFile = 'index'; // the file to load

app.set('view engine', 'pug'); // use pug

app.get('/', function (req, res) {
res.render(indexFile, { templateToLoad: 'Views/Templates/temp.pug' }); // include a template file
});

app.listen(8888, function () {
console.log('Server running on port 8888');
});

还有我的 Pug 文件/HTML

doctype html
html
body
p default content on all pages
include templateToLoad

我的目录是这样的

dir

启动服务器时我收到此错误消息

Error: ENOENT: no such file or directory, open 'C:\Users\mah\Desktop\Test\views\templateToLoad.pug'
at C:\Users\mah\Desktop\Test\views\index.pug line 5
at Object.fs.openSync (fs.js:584:18)
at Object.fs.readFileSync (fs.js:491:33)
at Function.read (C:\Users\mah\Desktop\Test\node_modules\pug-load\index.js:69:13)
at Object.read (C:\Users\mah\Desktop\Test\node_modules\pug\lib\index.js:147:25)
at C:\Users\mah\Desktop\Test\node_modules\pug-load\index.js:24:25
at walkAST (C:\Users\mah\Desktop\Test\node_modules\pug-walk\index.js:23:18)
at C:\Users\mah\Desktop\Test\node_modules\pug-walk\index.js:104:20
at Array.reduce (native)
at walkAndMergeNodes (C:\Users\mah\Desktop\Test\node_modules\pug-walk\index.js:103:18)
at walkAST (C:\Users\mah\Desktop\Test\node_modules\pug-walk\index.js:37:19)

但是在调试 templateToLoad 时,我得到了 'Views/Templates/temp.pug'。为什么文件夹 Templates 被忽略?

最佳答案

动态包含是 not supported在帕格。我建议您发送模板名称并使用 conditionals在您的 index.pug 中显示所需的模板。

注意:temp1temp2 ... tempN 需要存在于您的Templates 文件夹中

doctype html
html
body
p default content on all pages
if templateToLoad == "temp1"
include Templates/temp
else if templateToLoad == "temp2"
include Templates/temp2

发送模板名称。

app.get('/', function (req, res) {
res.render(indexFile, { templateToLoad: 'temp1' }); // include a template file
});

关于node.js - PugJs - 找不到模板文件/忽略目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47408127/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com