我对nodeJS很陌生,以及实现SQL查询的最佳方法是什么。
当我在NodeJS中执行mysql插入时,我需要查询该值是否存在,然后我需要进行额外的查询以获取1字段的最大值。
所有内容都有回调,并依赖于一个查询执行,然后再转到下一个。 这变得非常混乱,特别是因为我必须传递函数中的所有回调。
我正在考虑创建存储过程以保持逻辑清洁..
this.get = function(data, callback, getMaxOrder, parentScope){
var val = db.query('select * from my_table where ?', data, function(err, result) {
if (err) throw err;
callback(data, result, getMaxOrder, parentScope);
});
}
this.getMaxOrder = function(data, callback, parentScope){
var val = db.query('select max(`order`) as maxOrder from my_table where some_attr = ?', [data.some_attr], function(err, result) {
if (err) throw err;
callback(data, result, parentScope);
});
}
this.parentInsert = function(data, callback){
console.log("call parent insert..");
db.config.queryFormat = db.config.defaultQueryFormat;
db.query('insert into cards SET ?', data, function(err, result) {
if (err) throw err;
//callback(result);
});
}
this.insert = function(data, callback){
//get all names w/ the same board id..
var getResults = function(data, results, getMaxOrder, parentScope){
if(results.length == 0){
console.log("incremenet the order..");
//by getting... max order..
var maxOrderCallback = function (data, results, parentScope){
var order = results[0].maxOrder + 1;
//now update...
var newData = {order: order, name: data.name, boardId: data.boardId, userId: data.userId};
parentScope(newData);
}
getMaxOrder(data, maxOrderCallback, parentScope);
}else{
//throw "Name for card in the board already taken!";
}
}
this.get(data, getResults, this.getMaxOrder, this.parentInsert);
}