0
res.render
做什麼在這裏。爲什麼不使用res.send呢?mongoDB中的res.render()是什麼?
app.get('/', function (req, res) {
db.collection('hello_mongo_express').findOne({}, function(err, doc){
res.render("request handled");
});
});
在這種情況下渲染是否意味着它將填充標記模板與「值」? – Dimoff
@nosille正確的是,通過傳入的值從標記模板生成HTML。 – JohnnyHK