书架级联删除

时间:2017-02-06 23:33:02

标签: mysql node.js express knex.js bookshelf.js

我有两个模型CompanyCompanyAdmin。模型公司有许多CompanyAdmins。我正在尝试使用bookshelf插件bookshelf-cascade-delete删除父公司时删除CompanyAdmins。我还使用 knex 连接 mysql db。

这是我的模特:

const db = bookshelf(connection);
db.plugin(cascadeDelete);

const Company = db.Model.extend({
    tableName: 'company',
    idAttribute: 'id',
    hasTimestamps: true,
    company_admins: function () { return this.hasMany(CompanyAdmin); }, // console.log(this);
}, {
    dependents: ['company_admins'],
});

const CompanyAdmin = db.Model.extend({
    tableName: 'company_admin',
    idAttribute: 'id',
    hasTimestamps: true,
    company: function () { return this.belongsTo(Company) },
});

当我在 company_admins 函数中 console.log(this)时,我会收到以下数据:

ModelBase {
  tableName: 'company',
  idAttribute: 'id',
  hasTimestamps: true,
  company_admins: [Function: company_admins] }

这是我的DELETE路由处理程序:

.delete((req, res) => {
    if (req.user) {
        Company.forge({
            id: req.user.attributes.company_id,
        })
        .destroy()
        .then(() => {
            res.status(200)
            .json({
                status: 200,
                error: false,
            });
            req.logout();
        }).catch((err) => {
            console.log(err);
            res.status(500)
            .json({
                status: 500,
                error: err.message,
            });
        });
    } else {
        res.status(401)
        .json({
            status: 401,
            message: 'User not authenticated',
        });
    }
});

我收到此错误:

  

TypeError:无法读取属性“hasMany'未定义的

有同样问题的人吗?

1 个答案:

答案 0 :(得分:0)

我解决了这个问题。错误是导入书架。 我之前使用的代码是:

import bookshelf from 'bookshelf';
const db = bookshelf(connection);

书架的正确导入如下:

const db = require('bookshelf')(connection);

不太确定为什么以前的代码不起作用,但修改后的版本运行良好!