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 %}
次に、投稿のメッセージがレンダリングされません。
私を助けてください!