我正在为我的expressjs项目使用Ejs模板引擎,尽管将我的对象传递到我的视图blog.ejs文件,我在我的ejs文件中收到blogpost not defined
错误。错误发生在我的<% blogpost.forEach(function(blogpost) { %>
行。我认为这与如何传递对象及其属性有关,但我遵循指南并且看起来是正确的。
routes.js:
//blog
router.route('/blog')
// START POST method
.post(function(req, res) {
var blogpost = new Blogpost(); // create a new instance of a Blogpost model
blogpost.title = req.body.title; // set the blog title
blogpost.author = req.body.author; // set the author name
blogpost.content = req.body.content; // set the blog content
blogpost.date = req.body.date; // set the date of the post
//Save Blog Post
blogpost.save(function(err) {
if (err)
res.send(err);
res.json({ message: 'Blog created.' });
});
}) // END POST method
// START GET method
.get(function(req, res) {
Blogpost.find(function(err, blogpost) {
if (err)
res.send(err);
blogpost.title = req.body.title; // update the blog title
blogpost.author = req.body.author; // set the author name
blogpost.content = req.body.content; // update the blog content
blogpost.date = req.body.date; // set the date of the post
res.render('pages/blog', {
title: blogpost.title,
author: blogpost.author,
content: blogpost.content,
date: blogpost.date
});
});
}); // END GET method
blog.ejs:
<html>
<head>
<% include ../partials/head %>
</head>
<body>
<header>
<% include ../partials/header %>
</header>
<div class="grid">
<div class="col-1-1">
<div class="body-content">
<% blogpost.forEach(function(blogpost) { %>
<h1><%= blogpost.title %></h1>
<% }); %>
</div>
</div>
</div>
<footer>
<% include ../partials/footer %>
</footer>
</body>
</html>
答案 0 :(得分:3)
您没有将名为blogpost
的数组变量传递给模板,而是将这些变量传递给模板:
title: blogpost.title,
author: blogpost.author,
content: blogpost.content,
date: blogpost.date
你可以这样做render()
而不是你现有的那个:
res.render('pages/blog', {
blogpost: blogpost,
});