我正在使用mysql npm包进行连接并尝试从表中获取数据,该表具有类型为BIT的列.但这些专栏已经变为:
"isBasic": {
"type": "Buffer",
"data": [
1
]
},
Run Code Online (Sandbox Code Playgroud)
如何将它们映射到布尔类型?
我正在使用瀑布方法的异步模块.
async.waterfall([
function(callback) {
...
callback(err);
},
function(result, callback) {
console.log("This function should not be executed");
}
],
function(err) {
if (err) {
next(err);
return;
}
}
);
Run Code Online (Sandbox Code Playgroud)
但第二个功能总是执行.怎么预防呢?