NodeJS和MariaDB,等待查询结果

时间:2018-11-16 10:26:57

标签: node.js promise async-await mariadb

我有以下代码:

pool.getConnection()
.then(conn => {
    return conn.query("SELECT table_name FROM information_schema.tables WHERE TABLE_SCHEMA='SquadgoalsDB';")
        .then((rows)=>{
            for(let i=0; i< rows.length;i++){
                tableNames.push(rows[i].table_name)
            }
            tableNames = []
            if(tableNames.length == 0){
                throw new Error("NO_TABLES_FOUND")
            }
            return conn.query("select DISTINCT(column_name) from information_schema.columns WHERE TABLE_SCHEMA='SquadgoalsDB'")
        })
        .then((rows)=>{
            for(let i=0; i< rows.length;i++){
                columnNames.push(rows[i].column_name)
            }
            if(columnNames.length == 0){
                throw new Error("NO_COLUMNS_FOUND")
            }
            conn.end()
            console.log("MariaDB connection works")
        })
        .catch((err) =>{
            throw err;
            conn.end()
        })

}).catch(err =>{
    console.log("not connected to mariadb due to error: " + err);
});


module.exports.tableNames = tableNames;  //always empty
module.exports.columnNames = columnNames; // always empty

我想搜索数据库中的所有表名和列名。之后,我还有更多的服务器启动内容,我想导出上面显示的两个数组,但是它们总是空的,因为我们不等待查询?我该如何等待(可能是使用async / await)上述代码完成,然后继续执行导出和其他操作?

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

我相信您可以这样做: await 应该等待整个承诺链完成,并且应该收到表示已解决或拒绝的承诺的对象。 但是请记住,导出也是 async 操作,因此它可能在功能完成之前发生。

与异步系统配合使用的最佳方法是使用回调。您需要导出回调分配方法以获取回调,并在异步执行时调用它。

module.exports = pool.getConnection()
    .then( async (conn) => {
       return await conn.query("SELECT table_name FROM information_schema.tables WHERE TABLE_SCHEMA='SquadgoalsDB';")
            .then((rows)=>{
                for(let i=0; i< rows.length;i++){
                    tableNames.push(rows[i].table_name)
                }
                tableNames = []
                if(tableNames.length == 0){
                    throw new Error("NO_TABLES_FOUND")
                }
                return conn.query("select DISTINCT(column_name) from information_schema.columns WHERE TABLE_SCHEMA='SquadgoalsDB'")
            })
            .then((rows)=>{
                for(let i=0; i< rows.length;i++){
                    columnNames.push(rows[i].column_name)
                }
                if(columnNames.length == 0){
                    throw new Error("NO_COLUMNS_FOUND")
                }
                conn.end()
                console.log("MariaDB connection works")
            })
            .catch((err) =>{
                throw err;
                conn.end()
            })

    }).catch(err =>{
        console.log("not connected to mariadb due to error: " + err);
    });

在另一个文件中,您可以执行以下操作:

(async function(){

  let foo = await require("./codeabove");
  console.log(foo);
})();