- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这 2 个模型描述了我需要执行 api 操作的 2 个表:
// USER MODEL
'use strict';
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class User extends Model {
/**
* Helper method for defining associations.
* This method is not a part of Sequelize lifecycle.
* The `models/index` file will call this method automatically.
*/
static associate(models) {
// define association here
User.belongsToMany(models.Company, {
through: 'UserCompany',
foreignKey: 'id',
})
}
};
User.init({
firstname: DataTypes.STRING,
lastname: DataTypes.STRING,
phone: DataTypes.STRING
}, {
sequelize,
modelName: 'User',
});
return User;
};
// COMPANY MODEL
'use strict';
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class Company extends Model {
/**
* Helper method for defining associations.
* This method is not a part of Sequelize lifecycle.
* The `models/index` file will call this method automatically.
*/
static associate(models) {
// define association here
Company.belongsToMany(models.User, {
through: 'UserCompany',
foreignKey: 'id',
})
}
};
Company.init({
company_name: DataTypes.STRING
}, {
sequelize,
modelName: 'Company',
});
return Company;
};
我希望能够将用户添加到公司,并将公司添加到用户。因此这里的多对多/
belongsToMany
实现。例如,在我的公司 Controller 中,要获取公司,我会执行以下操作:
getById(req, res) {
return Company
.findByPk(req.params.id, {
include: [{
model: User,
as: 'users'
}],
})
.then((company) => {
if (!company) {
return res.status(404).send({
message: 'Company Not Found',
});
}
return res.status(200).send(user);
})
.catch((error) => {
console.log(error);
res.status(400).send(error);
});
}
我该怎么做:
最佳答案
sequelize 在模型上设置特殊的 methods/mixins 以帮助您处理创建的模型的副本
const account = await Account.create({ myAccountProps });
await account.setCompanies(arrayOfCompanies);
关于mysql - 如何更新和附加值到多对多 Sequelize 实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67223101/
我在此选择中有一堆选项,每个选项都有值,例如: context|cow context|test thing|1 thing|5 thing|27 context|beans 在循环选项时,我想构建一
我是一个 JavaScript 菜鸟。我一直在用谷歌搜索互联网,但没有答案对我有帮助。我有一个数据库 ID,必须以模式形式作为隐藏值发送。 echo "".$bl_total['id'].""; *
我正在尝试编写一种方法,根据用户输入一次更改 ArrayList 中所有对象的值。用户通过对话框输入一个值,然后将其转换为整数并分配给一个值。 该列表称为studentList,并用Student 对
所以我已经阅读了有关 ajax 的回调和异步行为的内容,但我不知道如何从 ajax 的附加值创建事件。 我有这个 html : var searchRequest = null; $(function
有两个表,report 和reportcomment。每个报告评论(通过外键)分配给一个报告,因此一个报告有零到多个报告评论。 如果我需要一个列表,它为我提供了所有报告以及每个报告的相应评论数量,我将
从下面的两个文件中,我得到了输出 (2000)1 但它应该只有 (2000) 在使用 curl 获取值后附加了额外的 1,但为什么呢? balance.php user_balance.php 最
我是一名优秀的程序员,十分优秀!