使用 mongoose populate 来显示作者
在我的网站上,用户可以添加通知,我希望页面显示通知的作者。
const notices = await Notice.findById(id).populate('author');
在这条路线上,我可以 console.log(notices) 并查看帖子的作者,并且我可以使用 EJS<%= notifications.author.username %> 显示作者
BUUUT 在这条路线上,
const notices = await Notice.find({}).populate('author');
当我 console.log(notices) 时,我可以看到作者,但是当我尝试用 <%= notifications.author.username %> 显示它时我收到一条错误消息,说用户名未定义。
帮助!!!
On my site a user can can add a notice, I want the page to show the author of the notice.
const notices = await Notice.findById(id).populate('author');
On this route I can console.log(notices) and see author of the post, and i can show the author using EJS<%= notices.author.username %>
BUUUT on this route
const notices = await Notice.find({}).populate('author');
I can see the authors when i console.log(notices) but when i try to display it with <%= notices.author.username %> i get an error saying username is undefined.
Help!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于
notices
是一个数组,您应该通过索引或映射其元素来访问其元素:Since
notices
is an array you should access its elements by index or by mapping its elements:上面的路由得到notice作为对象,并得到notices2作为数组,因为将notices作为findBYID的查询获取,并获取notices2作为find的查询。
这就是为什么获取通知获取对象和通知2获取数组。
The above route gets noticed as the object and gets notices2 as the array because of getting notices as the query for findBYID and getting notices2 as the query for the find.
That's why getting notices getting object and notices2 getting array.