// Get the documents collection
var collection = db.collection('students');
// Find all students
collection.find({}).toArray(function (err, result) {
if (err) {
res.send(err);
} else if (result.length) {
res.render('studentlist',{
// Pass the returned database documents to Jade
"studentlist" : result
});
} else {
res.send('No documents found');
}
//Close connection
db.close();
});
这是我在收集学生的mongodb中查找学生列表的代码。
从mongodb中的studentlist获取/打印数据到html页面的最佳方法是什么?