我在搞乱 node.js,使用 Faker、underscore、mysql 和 randy 库向 Web 应用程序添加一些测试数据。
到目前为止一切顺利——但在我的一个循环中,mysql 调用每次都失败,但它也无法生成任何错误。我有点难过:
var sql = 'SELECT id FROM mytable WHERE 1';
client.query(sql, function(err, rows, fields){
// loop through results
_.each(rows, function (v, i){
// get the insert id
var id = v.id;
console.log (id); // prints valid ID
// generate other data
var stuff_count = randy.randInt(0,12);
_(stuff_count).times(function(n){
var sql = 'INSERT INTO other_table (linked_id, item_id) VALUES ('+id+','+randy.randInt(1,50)+')';
console.log(sql); // prints sql
client.query(sql, function(err, rows, fields) {
console.log(sql); // prints nothing
if (err){
console.log(sql); // prints nothing
throw err; // prints nothing
}
});
});
});
循环逻辑工作正常,它一直到 sql 应该执行INSERT
反对的地方other_table
- 但是跟踪 mysql 日志显示没有任何东西击中数据库,并且client.query
块内的任何调试语句都没有打印任何东西,成功或失败。