从throw错误NodeJS获取错误消息

时间:2018-06-08 17:53:25

标签: mysql node.js try-catch getmessage

我需要在错误中插入日志错误。

mysql.query(sql_log, [sucess], function (err, result) {
     if (err){ 
        mysql.rollback(function() {
           throw err;
        });
      }
});

我需要得到err.message

1 个答案:

答案 0 :(得分:0)

如果条件允许,只需console.log(err);

mysql.query(sql_log, [sucess], function (err, result) {
 if (err){ 
console.log(err);
    mysql.rollback(function() {
       throw err;
    });
  }});