Rumah > Soal Jawab > teks badan
fs.readFile('/etc/passwd', function (err, data) {
if (err) throw err;
console.log(data);
});
在node.js中为何回调函数的第一个参数是err(错误)?
PHP中文网2017-04-17 13:17:56
个人感觉,如果api设计成
fs.readFile('/etc/passwd').success(function(data){
//todo
}).error(function(err){
//todo
});
会更加优雅。