簡體   English   中英

在Knex.js查詢中未定義Runner

[英]Runner is undefined in query of Knex.js

我嘗試通過以下代碼在Node.js上使用Knex.js:

var Promise = require("bluebird");
var knex = require("knex")({  
    client: 'pg',
    user     : 'username',
    database : 'database',
    password: "password",
    migrations: {
        tableName: 'knex_migrations'
    },
    pool: {
        min: 0,
        max: 7
    }
});

knex.select("*").from("users").then(function(rows){
    console.log(rows);
});

但是,它引發了有關Runner對象的錯誤,如下所示:

/path/to/myapp/node_modules/knex/lib/interface.js:27
    return new Runner(this).run().then(onFulfilled, onRejected);
           ^
TypeError: undefined is not a function
    at QueryBuilder_PG.Target.then (/path/to/myapp/node_modules/knex/lib/interface.js:27:12)
    at Object.<anonymous> (/path/to/myapp/test.js:14:32)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)
    at startup (node.js:119:16)
    at node.js:906:3

當我嘗試使用streampipeexectransaction ,發生了相同的錯誤。
請告訴我如何解決這個問題...

我真的很在意客戶端的配置。 我對“連接”的描述有誤。 它必須編寫如下:

var Promise = require("bluebird");
var knex = require("knex")({
    client: 'pg',
    connection: {
        host     : '127.0.0.1',
        user: 'username',
        database: 'database',
        password: 'password'
    },
    migrations:{
        tableName:"knex_migrations"
    },
    pool: {
        min: 0,
        max: 7
    }
});

knex.select("*").from("users").then(function(rows){
    console.log(rows);
});

它沒有問題。
謝謝!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM