来自mongodb的数据未使用EJS显示在视图中

时间:2015-12-16 22:36:38

标签: node.js mongodb express ejs

我正在使用猫鼬并与EJS一起表达。出于某种原因,我在mongodb中的数据没有出现在视图中。我没有错,它只是空白。

var Person = require('.././schema.js');

module.exports = function(app) {
app.get('/about', function(req, res) {

var peopleList = [];
var title = "Users in Database:";

Person.find(function (err, people) {
  if (err) return console.error(err);
  for(var i = 0; i < people.length; i++) {
    peopleList.push({name: people[i].name, role: people[i].role, wage: people[i].wage});
  }

  console.log(peopleList);
  console.log(peopleList[0].name + ' ' + peopleList[0].wage + ' ' + peopleList[0].role);
});

res.render('pages/about', {
  peopleList: peopleList,
  title: title
});
});
}

在我看来:

<h3><%= title %></h3>
<blockquote>
<ul>
<% for(var i = 0; i < peopleList.length; i++) { %>
  <li><%= peopleList[i].name %> : <%= peopleList[i].role %> : <%= peoplelist[i].wage %></li>
<% }; %>
</ul>

替代尝试:

<ul>
  <% peopleList.forEach(function(peopleList) { %>
      <li><%= peopleList.name %> - <%= peopleList.role %></li>
  <% }); %>
</ul>

&lt;%= title%&gt;工作得很好,只是没有数据。如果我创建自己的数组,其中包含对象并使用相同的forEach循环,它也可以。

0 个答案:

没有答案