使用 js/express.js 显示来自 MongoDb 的数据时出现问题,
Trouble displaying data from MongoDb by using js/express.js,
我很难将 MongoDB 中的数据显示到首页。我可以看到我在我的集合中获得了正确数量的项目,但是当我尝试显示所选数据时它告诉我 [object Object]。谁能帮忙?谢谢
Code for getting data from the collection "title"
Call for displaying the 1 element in the title array
What the browser tells me
您正在尝试显示导致 [object Object]
的整个对象。你必须给你的 HTML 一个像 result[0].title
这样的字符串(假设你的对象中有一个字段 title
)
在JS中JSON.stringify(result[0])
也可以显示整个对象
谢谢!我以为我已经尝试过了,但没有。现在可以了:)祝你有美好的一天
我很难将 MongoDB 中的数据显示到首页。我可以看到我在我的集合中获得了正确数量的项目,但是当我尝试显示所选数据时它告诉我 [object Object]。谁能帮忙?谢谢 Code for getting data from the collection "title"
Call for displaying the 1 element in the title array
What the browser tells me
您正在尝试显示导致 [object Object]
的整个对象。你必须给你的 HTML 一个像 result[0].title
这样的字符串(假设你的对象中有一个字段 title
)
在JS中JSON.stringify(result[0])
也可以显示整个对象
谢谢!我以为我已经尝试过了,但没有。现在可以了:)祝你有美好的一天