在与SQLite3的nodejs接口中回调的麻烦

时间:2017-02-03 18:49:24

标签: node.js sqlite node-sqlite3

所以基本上应该在我的SQL命令完成后运行回调,但由于某种原因,回调永远不会被执行。

这是我目前的代码:

create : function() {
    var hit = false;
    this.db.serialize(function() {
        this.run("CREATE TABLE if not exists messages (phone_from CHAR(20) NOT NULL, phone_to CHAR(20) NOT NULL, message TEXT)");
        this.run("CREATE TABLE if not exists forwarding (phone_1 CHAR(20) NOT NULL, phone_2 CHAR(20) NOT NULL, phone_bind CHAR(20) NOT NULL)");

        this.get("SELECT * FROM FORWARDING;", function(err, row) {
            hit = true; //<--- Why is this never being hit?
        });

    });
    if (hit) {
        this.insert_forwarding("+18001231234","+18003214321","+18005432322");
        console.log("Inserted initial forwarding address");
    }

}

由于某些原因,在运行each, get, all SQL命令时,命令SELECT * FROM FORWARDING不起作用。

我做错了什么?我不懂什么?

谢谢!

1 个答案:

答案 0 :(得分:0)

您正在回调函数中分配hit = true,但您正在同步检查hit == true是否正确。回调将在if语句后执行,因此该条件永远不会是true

你能试试吗?

create : function() {
    var hit = false;
    this.db.serialize(function() {
        this.run("CREATE TABLE if not exists messages (phone_from CHAR(20) NOT NULL, phone_to CHAR(20) NOT NULL, message TEXT)");
        this.run("CREATE TABLE if not exists forwarding (phone_1 CHAR(20) NOT NULL, phone_2 CHAR(20) NOT NULL, phone_bind CHAR(20) NOT NULL)");

        this.get("SELECT * FROM FORWARDING;", function(err, row) {
            if (err) { // throw error }
            else {
              hit = true; // I guess you don't even need this flag
              if (hit) {
                this.insert_forwarding("+18001231234","+18003214321","+18005432322");
                console.log("Inserted initial forwarding address");
              }
            }
        });
    });
}

PS:我肯定会使用像bluebird或本机ES6 Promises这样的东西来摆脱你正在使用的回调模式和promisify sqlite库。这将使事情更容易理解,你不会最终得到嵌套的回调,导致人们喜欢称之为“回调地狱”。