带有node-mysql的async系列输出到数组

时间:2015-11-24 09:42:10

标签: javascript node.js asynchronous node-mysql

我想将mysql查询的结果存储在一个数组(docAutocomplete)中,并且在完成所有查询之后我想看到最终的数组。我正在为此目的使用异步系列。问题是阵列没有打印任何东西,因为它看起来没有任何数据(错误,结果)。

var mysql = require('mysql'),
async = require("async");
var connection = mysql.createConnection({
host: 'xx',
user: 'xx',
password: 'xx',
database: 'xx'
multipleStatements: true
});
var docAutocomplete = [];

async.series([

    function(callback) {
        connection.connect();


        connection.query('select x from a; select b from a', function(err, rows, fields) {
            if (err) throw err;

            for (var i = 0; i < rows[0].length; i++) {

                docAutocomplete.push({
                    " First Name": rows[0][i].x


                })
            }
            for (var i; i < rows[1].length; i++) {

                docAutocomplete.push({
                    "Last Name": rows[1][i].b

                })
            }





        });
        callback(null, 'one');

    },
    function(callback) {

        connection.end();

        callback(null, 'two');
    }
],
function(err, results) {
    console.log(results);
    console.log(JSON.stringify(docAutocomplete));

});

当前输出如下所示;

[ 'one', 'two' ]
[]  // value of docAutocomplete array. Should have something here First Name and  Last name

1 个答案:

答案 0 :(得分:0)

connection.query是异步的,因此在查询完成之前调用第一个回调。你应该只在suery终止时调用你的第一个回调,如下所示:

// ...
function(callback) {
    connection.connect();

    connection.query('select x from a; select b from a', function(err, rows, fields) {
        // ...

        callback(null, 'one'); // HERE
    });
    // NOT HERE
},
// ...