我正在使用https://github.com/felixge/node-mysql 并且每次 mysql 查询都会引发错误,例如如果一行不存在。节点服务器崩溃。
connection.connect();
connection.query('SELECT * from table1 where id = 2', function(err, rows, fields) {
if (err) console.log(err);
if (rows[0]) {
console.log('The result is ', rows[0].user);
}
});
connection.end();
我如何简单地将错误打印到页面而不是使服务器崩溃。