我有 expressjs 应用程序,并且在特定路线上,我调用了一个函数,该函数通过res.json
将数据库文档作为参数调用来响应数据库中的用户。我使用基于承诺的库,我想内联回调,我将数据库文档放入响应中。但是当我这样做时程序失败了。有人可以解释为什么吗?我也想知道为什么内联调用console.log
实际工作。res.json
这两种方法之间有什么根本区别console.log
吗?
这是一个有效的和无效的示例。假设getUserFromDatabase()
返回用户文档的承诺。
//This works
var getUser = function(req, res) {
getUserFromDatabase().then(function(doc) {
res.json(doc);
});
}
//This does not work (the server never responds to the request)
var getUserInline = function(req, res) {
getUserFromDatabase().then(res.json);
}
//This works (the object is printed to the console)
var printUser = function(req, res) {
getUserFromDatabase().then(console.log);
}