4

我正在使用 Express 3.x 这是我控制器中的代码:

Post.find({}, function(error, docs) {
   res.render('posts/index', {
        title: 'List of Posts',
        posts: docs,
      })
});

在我的 swig 模板中:

{% for post in posts %}
 {{post.message}}
{% endfor %}

然后,没有帖子的消息呈现。

请帮我!

4

0 回答 0