Bookshelf.knex 不是函数错误

Bookshelf.knex is not a function error

在将 Bookshelf 和 Knex 集成到我的堆栈中时遇到了一些问题。尝试执行 db read/write 时,我收到 TypeError: knex is not a function.

我的bookshelf.js:

'use strict'
var knex = require('knex')(require('./knexfile')).debug(true);
var bookshelf = require('bookshelf')(knex);
bookshelf.plugin('registry');
module.exports = bookshelf;

我的god.model.js:

var bookshelf = require('./bookshelf');

var God = bookshelf.Model.extend({
    tableName: 'gods'
});

module.exports = bookshelf.model('God', God);

最后,获取数据的函数:

var validate_key_secret = function(key, secret, callback) {
    God.where({apikey: key}).fetch().then(function(result) {
        if(result.attributes.apisecret === secret) {
            callback(results);
        } else {
            callback(false);
        }
    });
}

调用函数抛出以下错误:

TypeError: bookshelf.knex 不是函数 在 builderFn [as _builder] (D:\Repositories\knextest\node_modules\bookshelf\lib\bookshelf.js:314:27) 在 Object.query (D:\Repositories\knextest\node_modules\bookshelf\lib\helpers.js:44:23) 在查询时 (D:\Repositories\knextest\node_modules\bookshelf\lib\model.js:1243:30) 在哪里 (D:\Repositories\knextest\node_modules\bookshelf\lib\model.js:1278:23) 在 Function.Model.(匿名函数).Collection.(匿名函数) [as where] (D:\Repositories\knextest\node_modules\bookshelf\lib\bookshelf.js:333:28) 在 validate_key_secret (D:\Repositories\knextest\app\controllers\gods.server.controller.js:114:3) 在 Layer.handle [作为 handle_request] (D:\Repositories\knextest\node_modules\express\lib\router\layer.js:95:5) 接下来 (D:\Repositories\knextest\node_modules\express\lib\router\route.js:131:13) 在 Route.dispatch (D:\Repositories\knextest\node_modules\express\lib\router\route.js:112:3) 在 Layer.handle [作为 handle_request] (D:\Repositories\knextest\node_modules\express\lib\router\layer.js:95:5) 在 D:\Repositories\knextest\node_modules\express\lib\router\index.js:277:22 在 Function.process_params (D:\Repositories\knextest\node_modules\express\lib\router\index.js:330:12) 接下来 (D:\Repositories\knextest\node_modules\express\lib\router\index.js:271:10) 在 SessionStrategy.strategy.pass (D:\Repositories\knextest\node_modules\passport\lib\middleware\authenticate.js:325:9) 在 SessionStrategy.authenticate (D:\Repositories\knextest\node_modules\passport\lib\strategies\session.js:71:10)

到目前为止我尝试过的:

1) 调查 bookshelf.js 节点模块。错误发生在 ./node_modules/bookshelf/lib/bookshelf.js 第 314 行:

builder = bookshelf.knex(tableNameOrBuilder);

当我将行更改为时,

builder = bookshelf.knex.select().from(tableNameOrBuilder);

我能够执行简单的 sql 读取和写入。但是,这开始导致更复杂的查询出现问题,我认为编辑节点模块通常不是好的做法。但是,这样做确实排除了我的 knexfile/db 配置可能出现的任何问题。

2) 在循环依赖错误的情况下集成 bookshelf.plug('registry')

3) 检查 knex 文档。 Knex(tablename) 是查询构建器的一部分,应该可以工作。所以我补充说,

knex('gods');

到我的 bookshelf.js 文件的末尾,它抛出了一个类似的 [knex 不是函数] 错误。

我认为问题可能是 knex 模块未正确加载,但我不确定如何检查是否属于这种情况。目前,我有点难过。

抱歉,如果以上任何内容不清楚,我对节点和 javascript 开发还很陌生,很乐意提供有助于解决此问题的任何其他信息。

谢谢!

编辑:

Knexfile.js:

module.exports = { 
    client: 'pg', 
    connection: { 
        host: '<my cloud host [redacted]>', 
        user: process.env.DBUSER, 
        password: process.env.DBPASSWORD, 
        database: '<my db name [redacted]>' 
    } 
};

这个很棘手。该问题是由 .debug(true) knex 调用引起的, 不是 return knex 实例。所以把bookshelf.js改成

'use strict'
var knex = require('knex')(require('./knexfile'));
knex.debug(true);
var bookshelf = require('bookshelf')(knex);
bookshelf.plugin('registry');
module.exports = bookshelf;

与其以这种方式强制调试模式,还不如从 knex 连接字符串中设置它,例如:

{ 
  client: 'pg', 
  connection: { 
    host: '<my cloud host [redacted]>', 
    user: process.env.DBUSER, 
    password: process.env.DBPASSWORD, 
    database: '<my db name [redacted]>' 
  },
  debug: true
}