我正在使用Nodejs和MongoDB。首先,我将名为sample.csv
的Excel工作表导入MongoDB。现在我想显示已导入MongoDB的所有数据。在这种情况下,我的问题是如何创建实例。
我在node.js中使用的代码如下:
router.route('/user/:_id/sample')
.get(function(req, res)
.find(function(err, sample) {
if (err) {
res.send(err);
}
res.json(sample);
});
});