我在我的用户服务中创建了一个 before 挂钩,旨在包含来自组织模型的记录。用户和组织之间的关系是
users.belongsToMany(models.organizations,{through: 'users_to_organizations'});
before 钩子称为 attach-orgnaization.js,看起来像
module.exports = (options = {}) => {
return async context => {
const organizations = context.app.services.organizations.Model;
context.params.sequelize = {
include: [{model: organizations}]
};
return context;
};
};
它像这样在 users.hooks.js 中设置
....
const attachOrganization = require('../../hooks/attach-organization');
module.exports = {
before: {
all: [],
find: [ authenticate('jwt') ],
get: [authenticate('jwt'), attachOrganization()],
....
当我 GET 时,/users?id=1
我让用户返回与用户关联的组织 in users_to_organizations
,这恰好是 org 3“测试组织”。
我期待在回复中看到更多与组织相关的字段。
相反,我只看到
{
"total": 1,
"limit": 10,
"skip": 0,
"data": [
{
"id": 1,
"email": "hello@feathersjs.com",
"googleId": null,
"githubId": null,
"createdAt": "2020-04-29T04:26:49.541Z",
"updatedAt": "2020-04-29T04:26:49.541Z"
}
]
}
单步调试器(pycharm)我可以看到钩子中的代码正在执行。
我猜要么 sequelize 没有看到关系,要么feathers 没有将包含添加到查询中。
我可能会错过什么?
谢谢!