最近在折腾 node-webkit, 发现 console.log
在命令行界面输出 JSON 数据的时候已经 JSON.parse()
过得数据没有格式化…有办法么…
16 回复
我在node-webkit项目里面 客户端访问mysql代码:
var Mysql = {
pool : null,
init : function(){
var mysql = require('mysql');
Mysql.pool = mysql.createPool({
host : '',
user : '',
password : '',
database : ''
});
},
searchBySin : function(sin){
Mysql.pool.query('SELECT * FROM xx WHERE xx = xx', function(err, rows, fields) {
if (err) throw err;
console.log(rows[0]);
});
}
}
这样输出,我希望是类似![希望格式](http://img5.tuchuang.org/uploads/2014/04/13DE07FF-0612-43BF-ACC4-614098367FE0.png.jpg)
但是实际输出是类似json字符串