- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图通过 Sequalize 定义多对多关系,但我似乎无法在创建元素后应用这种关系。
多对多关系是在 LegalFoundation
和 Case
之间,并且 LegalCase
已经在数据库中定义,所以看起来 belongsToMany()
完成了它的工作。
但是,在确保定义了所有 LegalFoundations
并创建了 Case
之后,我正在努力定义两者之间的关系。
似乎 created_case
缺少所需的功能: UnhandledPromiseRejectionWarning: TypeError: created_case.addLegalFoundation is not a fun n is not a function
。但是,我读过的所有文档都表明 create
函数应该返回正确的元素。所以我有点难住了。
如果这对调试有帮助,GET 请求将返回 column legal_foundations->LegalCase.case_id does not exist
。
希望有人能给我指路!
数据库.js
const Sequelize = require('sequelize')
const database = new Sequelize('#####', '#####', '#####', {
dialect: 'postgres',
operatorsAliases: Sequelize.Op
})
const District = database.define('district', {
id: {
type: Sequelize.INTEGER,
autoIncrement: true,
primaryKey: true
},
name: { type: Sequelize.STRING, allowNull: false}
});
const LegalFoundation = database.define('legal_foundation', {
id: {
type: Sequelize.INTEGER,
autoIncrement: true,
primaryKey: true
},
text: {type: Sequelize.TEXT, allowNull: false}
});
const Case = database.define('case', {
id: {
type: Sequelize.INTEGER,
autoIncrement: true,
primaryKey: true
},
ref: {type: Sequelize.TEXT},
report: {type: Sequelize.ARRAY(Sequelize.TEXT)},
consideration: {type: Sequelize.ARRAY(Sequelize.TEXT)},
decision: {type: Sequelize.ARRAY(Sequelize.TEXT)},
date: {type: Sequelize.DATE}
});
District.hasMany(Case)
LegalFoundation.belongsToMany(Case, {through: 'LegalCase', as: 'cases', foreignKey: "case_id"})
Case.belongsToMany(LegalFoundation, {through: 'LegalCase', as: 'legal_foundations', foreignKey: "legal_foundation_id"})
module.exports = {
database,
District,
LegalFoundation,
Case
}
案例.js
const express = require('express')
const { Case, District, LegalFoundation } = require('./db/database')
const { Op, Sequelize } = require("sequelize");
const router = express.Router()
router.post('/', async (req, res, next) => {
try {
const {ref, report, consideration, decision, legal_foundation, date, district} = req.body;
const [district_ins, created_d] = await District.findOrCreate({
where: {
name: district
},
});
foundations = [];
if (typeof legal_foundation == 'object'){
legal_foundation.forEach(async element => {
let [f, created_f] = await LegalFoundation.findOrCreate({
where: {
text: element
}
});
foundations.push(f.id)
});
} else {
let [f, created_f] = await LegalFoundation.findOrCreate({
where: {
text: legal_foundation
}
});
foundations.push(f.id)
}
const created_case = await Case.create({
ref: ref,
report: report,
consideration: consideration,
decision: decision,
date: date,
districtId: district_ins.id
});
foundations.forEach(async element => {
await created_case.addLegalFoundation(element);
});
res.json({success: true, id})
}
catch (error) {
res.json({success: false, error: error})
}
})
router.get('/', async (req, res, next) => {
try{
const all = await Case.findAll({include: {
model: LegalFoundation,
as: 'legal_foundations'
}});
res.json({success: true, item: all});
}
catch (error) {
res.json({success: false, error: error.message})
}
})
module.exports = router;
最佳答案
你在这里有几个问题:
belongsToMany
关联。 foreignKey
应指示您调用其方法 belongsToMany
的模型的字段:LegalFoundation.belongsToMany(Case, {through: 'LegalCase', as: 'cases',
foreignKey: "legal_foundation_id", otherKey: "case_id" })
Case.belongsToMany(LegalFoundation, {through: 'LegalCase', as: 'legal_foundations',
foreignKey: "case_id", otherKey: "legal_foundation_id"})
forEach
方法不能等待异步迭代。你应该使用 for of
: for (const element of legal_foundation) {
let [f, created_f] = await LegalFoundation.findOrCreate({
where: {
text: element
}
});
foundations.push(f.id)
}
for (const element of foundations) {
await created_case.addLegalFoundation(element);
}
legal_foundations
名称和 _
然后尝试查看 created_case
的方法,也许它们应该像 addLegal_Foundation
或 addLegal_foundation
关于javascript - sequelize 多对多 setter 不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66026510/
因此,我需要获取在为其赋值时调用的 setter 的名称。像这样: var b = {}; var a = { set hey(value) { b[] = value; } } 我希望 se
我是 Android 编程的新手(~ 2 个月)有必要为几十个不同的变量设置 getter 吗? 例如—— //Yes I realise that this isn't 'dozens' publi
import Control.Lens import Control.Lens.TH data Foo = Foo { _bar, _baz :: Int } makeLenses ''
我有点困惑:我可以覆盖 setter/getter 但仍然使用 super setter/getter 吗?如果是 - 怎么办? 用例: class A { void set value(num
我有一个接收消息的应用程序。消息中存在可编辑的字段。当字段更改时,应将其保存到数据库中。不幸的是,setter 仅在 setter 的范围内更改给定字段的值。知道为什么会发生这种情况吗?这是 gett
C# 中有没有一种方法可以让 setter 从“某物”继承,这样每次为特定基类及其继承者调用 setter 时,我都可以运行一些代码? 我想做的是在我的基类上有一个名为 IsValid 的 bool
可能是一个我无法解决的非常简单的问题 - 我从 C# 开始,需要使用 getter/setter 方法向数组添加值,例如: public partial class Form1 : Form {
这两个属性实现有什么区别? public override string A { get { return "s"; } set { } } public override strin
是否可以使用 abc.abstractproperty 创建一个具体的 getter 但将 setter 抽象为每个继承类的不同。我为每个子类处理不同的 val 设置。 例如。 @abstractpr
我在某处看到类似下面的内容,想知道它是什么意思。我知道他们是getter和setter,但是想知道为什么字符串Type是这样定义的。谢谢你帮助我。 public string Type { get;
Public class Example { private int number; public Example(int number){ this.number =
假设我有这样的代码: public response MyMethod(Request req) { String id = req.getFirst().geId(); } 我已经模拟了主对
允许这样做: public int Age { get; set; } 但是应用程序是否为变量创建/分配空间?我经常这样做 private int age = 0; public int Age {
我有一个条件,我构造字符串 (finalValue) 的方式是基于我在输入中获得的非空值的数量。所以我想知道是否可以用一个不同的参数为字符串 (finalValue) 重载 setter 方法并根据我
例如,在这段代码中 var o = { set a(value) {this.b = value}, get a() {return this.b} } 是否有可能获得对 o.a 的 sett
我一直在努力了解 getter 和 setter,但没有深入了解。我读过 JavaScript Getters and Setters和 Defining Getters and Setters只是没
我想在我的类中添加一个 getter 和 setter。然而,setter 应该接收一个 querySelector,但 getter 返回一个新类型 pageSections。 我的问题是 gett
使用有什么好处: private var _someProp:String; public function set someProp(value:String):void { _somePr
当从域类调用它时,我想在我的 setter 中执行一些操作,而不是从 hibernate 中调用它时。此外,我正在使用 session 工厂,因此我无法使用 @PostLoad 来触发标志! 有人对此
人员类别: public class Person { private String firstName; private String lastName; public Pe
我是一名优秀的程序员,十分优秀!