我是FeathersJS的新手,我正在尝试执行以下操作:
我的应用有两个名为Company
和User
的实体。当有人注册新公司时,会通知所有者的名称,电子邮件和密码。
然后,在我的公司表中为公司创建记录之后,我需要:
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()
,发现传递到钩子的对象context
内有一个名为result
的对象,当您在after
钩子中时,是这样的。现在使用此对象具有公司ID,所有者的名称和电子邮件。
答案 0 :(得分:1)
全部在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挂钩的更多信息。