gpt4 book ai didi

html - 我在尝试从 mongodb 恢复信息时遇到问题

转载 作者:太空宇宙 更新时间:2023-11-04 01:27:48 25 4
gpt4 key购买 nike

我正在尝试从数据库中恢复一些集合,但我不太确定为什么它没有按应有的方式显示。

感谢您的反馈!

//这是我的路由器的代码:

    router.get('/add', (req, res, next) => {
var categories = db.get('categories');
categories.find({},{},(err, categories)=>{
res.render('addpost', {
'title': 'Add post',
'categories': categories,
'errors': []
});
})
});

//这是我的 ejs 文件:

    <label>Categoria:</label>
<select name="category">
<% for (var i=0; i < categories.length; i++) { %>
<option value="<%= categories[i].title %>"><%= categories[i].title %></option>
<% } %>
</select>

print print2

最佳答案

类别,您从 find() 调用中检索到的实际上是一个 JSON 对象,而不是一个数组。您需要将其转换为数组或使用 .forEach 调用循环遍历 json

关于html - 我在尝试从 mongodb 恢复信息时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56927413/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com