FeathersJS:在钩子内创建记录

FeathersJS: Creating a record inside a hook

我是 FeathersJS 的新手,我正在尝试执行以下操作:

我的应用有两个名为 CompanyUser 的实体。当有人注册一家新公司时,所有者的姓名、电子邮件和密码会被告知。

然后,在我的公司中为公司创建记录后table我需要:

1) 获取新公司的id

2) 使用此 id 广告创建一个用户 companyId、所有者的姓名、所有者的电子邮件和给定的密码。

当然这应该在公司服务的 after insert hook 中完成,但我很困惑如何调用用户服务来执行此插入。

这是我的companies.model.js文件:

module.exports = function (app) {
  const sequelizeClient = app.get('sequelizeClient');
  const companies = sequelizeClient.define('companies', {
    company: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 100
    },
    cpfcnpj: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 25
    },
    owner: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 100
    },
    cpf: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 25
    },
    email: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 100
    },
    addr1: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 100
    },
    addr2: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 100
    },
    city: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 100
    },
    state: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 2
    },
    zip: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 10
    },
    phone: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 50
    }
  }, {
    hooks: {
      beforeCount(options) {
        options.raw = true;
      }
    }
  });

  companies.associate = function (models) {

  };

  return companies;
};

这是我的 users.model.js:

module.exports = function (app) {
  const sequelizeClient = app.get('sequelizeClient');
  const users = sequelizeClient.define('users', {
    companyID: {
      type: DataTypes.INTEGER,
      allowNull false,
      size: 11
    },
    name: {
      type: DataTypes.STRING,
      allowNull: false,
      size: 100
    },
    email: {
      type: DataTypes.STRING,
      allowNull: false,
      unique: true,
      size: 100
    },
    password: {
      type: DataTypes.STRING,
      allowNull: false
    },
    type: {
      type: DataTypes.STRING,
      allowNull: false,
      default: 'CL',
      size: 2
    }
  }, {
    hooks: {
      beforeCount(options) {
        options.raw = true;
      }
    }
  });

  users.associate = function (models) {

  };

  return users;
};

我知道在我的文件中 companies.hooks.js 我应该有类似

的内容
module.exports = {

  before: {
    all: [],
    ...
  },

  after: {
    ...
    create: [ insertUser() ],
    ...
  },

  error: {
    ...
  }
};

但除此之外,我真的不知道我应该如何编写我的 insertUser() 函数或将它放在哪里。正如我告诉过你的,我是 FeathersJS 的新手,这是我的第一天。

已编辑:

问题的第一部分已经回答。我在这里和那里使用了一些 console.log()s 并发现传递给钩子的对象 context 有一个名为 result 的对象,当你在 after 钩子中时,它是这样的。使用此对象现在拥有公司 ID、所有者的姓名和电子邮件。

里面全是context.

当您在 FeatherJS 中使用 hook 时,您的 hook function 会收到一个名为 context 的对象,该对象拥有您所需要的一切。

after hook 中,我们有 context.result,一个包含上一个查询结果的对象。在插入查询中,如问题中,context.result 具有所有插入的信息,包括插入公司的 id。

此外,context 对象包含对 FeathersJS app 对象的引用,该对象是 运行 的应用程序,包含其所有服务和挂钩以及所有内容。因此,为了按照问题的要求创建用户,您所要做的就是:

编辑文件 src/services/companies/companies.hooks.js 并在导入后的开头添加这样的函数

const createUser = function(context) {
  const userRecord = {
    companyID: context.result.id,
    name: context.result.owner,
    email: context.result.email,
    // Get all other information you need here
  };
  context.app.service('users').create(userRecord);
};

在同一个文件的正下方注册这个钩子

module.exports = {
  before: {
    all: [authenticate('jwt')],
    find: [],
    get: [],
    create: [],
    update: [],
    patch: [],
    remove: []
  },

  after: {
    all: [],
    find: [],
    get: [],
    create: [ createUser ], // <<=== registering the hook
    update: [],
    patch: [],
    remove: []
  },

  error: {
    all: [],
    find: [],
    get: [],
    create: [],
    update: [],
    patch: [],
    remove: []
  }
};

大功告成!每次您创建新公司时,都会执行 after hook 并创建与该公司关联的新用户。

单击 here 了解有关 FeathersJS 挂钩的更多信息。