从mongodb中的studentlist获取数据到html页面

时间:2016-09-12 11:10:15

标签: node.js mongodb

// 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页面的最佳方法是什么?

0 个答案:

没有答案