我需要在错误中插入日志错误。
mysql.query(sql_log, [sucess], function (err, result) {
if (err){
mysql.rollback(function() {
throw err;
});
}
});
我需要得到err.message
答案 0 :(得分:0)
console.log(err);
。
mysql.query(sql_log, [sucess], function (err, result) {
if (err){
console.log(err);
mysql.rollback(function() {
throw err;
});
}});