0

次のコードで 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

streampipe、を使用しようとするexectransaction、同じエラーが発生しました。
この問題の解き方を教えてください...

4

1 に答える 1

2

私はクライアントの構成について本当に不注意でした。「接続」の記述を間違えました。次のように記述する必要があります。

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);
});

問題なく動作します。
ありがとうございました!

于 2014-12-20T09:45:49.773 に答える