Mongoose Query结束时没有结果

时间:2017-07-01 08:35:35

标签: node.js express mongoose

我正在尝试运行查询以通过HTTP GET请求从我的数据库返回所有注释。没什么好看的。

// controller.js

dailyData

// routes.js

const indexPage = (req, res) => { Comment.find({}) .exec((err, comments) => { if(err) res.json({error: err}); res.json({ message: 'This is the index page', comments }); }); }

问题在于,当我访问router.route('/comments') .get(indexPage)时,它什么也没有返回。我通过降级${HOST_NAME}/comments - >来解决此问题。 4.11.0。我很好奇知道查询模式是否已经改变了?此版本的API是否有任何变化?

// model.js

4.6.4

0 个答案:

没有答案