gpt4 book ai didi

node.js - express 4.x 上的 EJS 布局(迁移)

转载 作者:搜寻专家 更新时间:2023-10-31 23:42:36 25 4
gpt4 key购买 nike

我有一个在 express 3.x 上运行的测试应用程序,带有用于 View 的 EJS(而不是 jade),我能够创建布局并相应地使用它们。但最近迁移到 express 4.x,除了布局之外一切都很好。布局似乎没有正确加载或根本没有加载。

是否有某种新模块需要加载?我错过了什么?我尝试将布局硬编码到我的 res.render 参数上,但没有采用。我什至为应用程序本身设置了默认布局。

./views/layouts/layout.ejs(所有 View 的默认布局

<!DOCTYPE html>
<html>
<head>
<% include partials/head %>
</head>
<body>
<% include partials/top_sidebar %>
<%- body %>
</body>

<% include partials/footer %>
</html>

./views/partials/top_sidebar.ejs

<a href = "/" >Home</a>
<a href = "/about" >About</a>
<a href = "/contact" >Contact</a>

<% if (!isAuthenticated) { %>
<a href = "/login" >Login</a>
<% } else { %>
<a href = "/user" >Profile</a>
<a href = "/" >Jobs</a>
<a href = "/logout" >Logout</a>
<% } %>

app.js(路由器调用'/about')

router.get('/about', function(req, res, next){
res.render('about', { isAuthenticated: false, user: req.user, title: 'About' });
});

./views/about.ejs

<h1><%= title %></h1>
<p>Something that gives about information.</p>

在此示例代码中,关于 View 加载时没有 top_sidebar。因此我假设布局没有正确加载。即使我强制它做:res.render('about', { isAuthenticated: false, user: req.user, title: 'About', layout: "./layouts/layout.ejs" });

最佳答案

我终于找到了一个很好的模块来代替我的旧方法。我正在使用 ejs-mate对于布局等。唯一的缺点是必须在 View 文件而不是路由上指定布局。但在大多数情况下,这应该不是什么大问题。

关于node.js - express 4.x 上的 EJS 布局(迁移),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28391158/

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