我正在尝试学习使用 Node.js。到目前为止,一切都很好。但是,作为 JavasSript 的新手,当有更清晰、更易读(至少对我而言)的语法可用时,我并没有真正理解使用回调的意义。
这是一个示例代码,可以使我的观点更清楚:
使用回调:
exports.create = function(req, res){
new Todo({
content : req.body.content,
updated_at : Date.now()
}).save(function(err, todo, count){
res.redirect('/');
});
};
没有回调:
exports.create = function(req, res){
newtodo = new Todo({
content : req.body.content,
updated_at : Date.now()
});
newtodo.save();
res.redirect('/');
};
这两个代码都将保存新的待办事项和重定向。
我更喜欢第二个,我觉得它更容易阅读,但也许有一个我不明白的区别。有区别吗?