- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有三个背靠背的关联表。这意味着 item_level_1 有很多 item_level_2,item_level_2 有很多 item_level_3。我使用搜索查询来查找名称中包含搜索文本的任何父项或子项。这意味着如果我键入 abc
,那么我需要返回所有父项或子项的完整详细信息(父项和子项)。但在我的例子中,如果 item_level_3 的名称中有 abc
,它会返回父级详细信息,但它只会返回 item_level_3 中带有 abc
的特定子项。我需要返回同一父级的 item_level_3 内的所有子级。
我在 AWS 中通过节点使用 MySQL 数据库
我检查了https://sequelize.org/master/manual/eager-loading.html#complex-where-clauses-at-the-top-level并尝试了不同的组合。但无济于事。我可能会错过一些东西。但是我找不到它。
exports.searchItems = (body) => {
return new Promise((resolve, reject) => {
let searchText = body.searchText.toLowerCase();
let limit = body.limit;
let offset = body.offset;
db.item_level_1.findAndCountAll({
where: {
[Sequelize.Op.or]: [
Sequelize.where(Sequelize.fn('lower', Sequelize.col("item_level_1.name")), Sequelize.Op.like, '%' + searchText + '%'),
Sequelize.where(Sequelize.fn('lower', Sequelize.col("item_level_2.name")), Sequelize.Op.like, '%' + searchText + '%'),
Sequelize.where(Sequelize.fn('lower', Sequelize.col("item_level_2.item_level_3.name")), Sequelize.Op.like, '%' + searchText + '%'),
],
[Sequelize.Op.and]: [
Sequelize.where(Sequelize.col("item_level_1.status"), Sequelize.Op.eq, body.status)
]
},
offset: offset,
limit: limit,
distinct: true,
subQuery: false,
attributes: ['id', 'name'],
include: [
{
model: db.item_level_2,
as: 'item_level_2',
where: {
status: body.status
},
attributes: ['id', 'name'],
required: true,
include: [{
model: db.item_level_3,
as: 'item_level_3',
where: {
status: body.status
},
required: false,
attributes: ['id', 'name']
}]
}
]
}).then(result => {
resolve({ [KEY_STATUS]: 1, [KEY_MESSAGE]: "items listed successfully", [KEY_DATA]: result.rows, [KEY_TOTAL_COUNT]: result.count });
}).catch(error => {
reject({ [KEY_STATUS]: 0, [KEY_MESSAGE]: "items list failed", [KEY_ERROR]: error });
});
})
}
预期结果
{
"status": 1,
"message": "Rent items listed successfully",
"data": [
{
"id": 21,
"name": "this is test parent one",
"item_level_2": [
{
"id": 39,
"name": "this is second test parent one",
"item_level_3": {
"id": 9,
"name": "this is the child description with abc"
}
},
{
"id": 40,
"name": "this is second test parent two",
"item_level_3": {
"id": 6,
"name": "this is the child description with def"
}
},
{
"id": 41,
"name": "this is second test parent three",
"item_level_3": {
"id": 70,
"name": "this is the child description with ghi"
}
}
]
}
],
"totalCount": 1
}
实际结果
{
"status": 1,
"message": "Rent items listed successfully",
"data": [
{
"id": 21,
"name": "this is test parent one",
"item_level_2": [
{
"id": 39,
"name": "this is second test parent one",
"item_level_3": {
"id": 9,
"name": "this is the child description with abc"
}
}
]
}
],
"totalCount": 1
}
item_level_1 模型
module.exports = (sequelize, DataTypes) => {
const item_level_1 = sequelize.define("item_level_1", {
id: { type: INTEGER, primaryKey: true, autoIncrement: true },
name: { type: STRING },
status: { type: BOOLEAN, defaultValue: 0 }
}, {
timestamps: false,
freezeTableName: true,
})
item_level_1.associate = function (models) {
item_level_1.hasMany(models.item_level_2, { as: 'item_level_2' });
};
return item_level_1;
}
item_level_2 模型
module.exports = (sequelize, DataTypes) => {
const item_level_2 = sequelize.define("item_level_2", {
id: { type: INTEGER, primaryKey: true, autoIncrement: true },
name: { type: STRING },
status: { type: BOOLEAN, defaultValue: 0 },
itemLevel2Id: { type: INTEGER },
itemLevel1Id: { type: INTEGER }
}, {
timestamps: false,
freezeTableName: true,
})
item_level_2.associate = function (models) {
item_level_2.belongsTo(models.item_level_3, { as: 'item_level_3', foreignKey: 'itemLevel2Id' });
};
return item_level_2;
}
item_level_2 型号
module.exports = (sequelize, DataTypes) => {
const item_level_3 = sequelize.define("item_level_3", {
id: { type: INTEGER, primaryKey: true, autoIncrement: true },
name: { type: STRING },
status: { type: BOOLEAN, defaultValue: 0 }
}, {
timestamps: false,
freezeTableName: true,
})
return item_level_3;
}
最佳答案
这是一个复杂的场景,需要一些解决方法。另外,我还没有测试所有场景,很抱歉它可能适用于示例案例,但不能满足您的所有需求。不过,我希望这会为您提供一些指导。
基于这里写的SQL,https://dba.stackexchange.com/a/140006 ,您可以在 item_level_2
之间创建 2 个 JOIN和 item_level_3
,1 个用于过滤,1 个用于获取所有相关记录。
item_level_2.hasMany(item_level_3, { as: 'item_level_3' });
// This extra association will be used only for filtering.
item_level_2.hasMany(item_level_3, { as: 'filter' });
然后,
db.item_level_1.findAndCountAll({
where: {
[Sequelize.Op.or]: [
Sequelize.where(Sequelize.fn('lower', Sequelize.col("item_level_1.name")), Sequelize.Op.like, '%' + searchText + '%'),
Sequelize.where(Sequelize.fn('lower', Sequelize.col("item_level_2.name")), Sequelize.Op.like, '%' + searchText + '%'),
// Use the filter association to filter data.
Sequelize.where(Sequelize.fn('lower', Sequelize.col("item_level_2.filter.name")), Sequelize.Op.like, '%' + searchText + '%'),
],
...
include: [
{
model: db.item_level_2,
as: 'item_level_2',
where: {
status: body.status
},
attributes: ['id', 'name'],
required: true,
include: [
{
model: db.item_level_3,
as: 'item_level_3',
where: {
status: body.status
},
required: false,
attributes: ['id', 'name'] // This should fetch all associated data.
},
{
model: db.item_level_3,
as: 'filter',
where: {
status: body.status
},
required: false,
attributes: [] // Do not fetch any data from this association. This is only for filtering.
}
]
}
]
}
})
这涵盖了 1 个项目与 item_level_3
匹配的场景并且有多个项目与相同的 item_level_2
相关联.如果有多个 item_level_2
,这将不起作用与 item_level_1
有关和 item_level_2
中的 1 个与 searchText
匹配.
我还没有测试过,但是,也许你可以为 item_level_1
做类似的事情如果您需要,也可以。
============================================= ==
如果item_level_2
之间有关联和 item_level_3
是belongsTo
,上述解决方案将不起作用。
您需要 (省略了错误的解决方案。)WHERE EXISTS
查询 item_level_3
.
============================================= ==
使用内联 IN
查询 item_level_3
文本匹配。
在进行内联查询之前,确保转义将进入 Sequelize.literal
的动态内容稍后。
Important Note: Since sequelize.literal inserts arbitrary content without escaping to the query, it deserves very special attention since it may be a source of (major) security vulnerabilities. It should not be used on user-generated content.
引用:https://sequelize.org/master/manual/sub-queries.html
const escapedSearchText = sequelize.escape(`%${searchText}%`);
首先设置内联查询选项以提取 item_level_1
searchText
所在的 ID出现在任何 child 中(item_level_3
)。为此,我只查询 item_level_2
和 item_level_3
表格和使用 GROUP
和 HAVING
.
const inQueryOptions = {
attributes: ['itemLevel1Id'], // This attribute name and the one in group could be different for your table.
include: [{
attributes: [],
model: db.item_level_3,
as: 'item_level_3',
where: {
name: {
[Sequelize.Op.like]: escapedSearchText
}
}
}],
group: 'itemLevel1Id',
having: Sequelize.literal('COUNT(*) > 0')
};
用 item_level_1
分组的 ID 和过滤 HAVING
, 这将返回所有 item_level_1
其任何子项位于 item_level_3
处的 ID有 searchText
.
这仍然只搜索 item_level_3
的名字。
接下来,将选项转换为内联查询。
const Model = require("sequelize/lib/model");
// This is required when the inline query has `include` options, this 1 line make sure to serialize the query correctly.
Model._validateIncludedElements.bind(db.item_level_2)(inQueryOptions);
// Then, pass the query options to queryGenerator.
// slice(0, -1) is to remove the last ";" as I will use this query inline of the main query.
const inQuery = db.sequelize.getQueryInterface().queryGenerator.selectQuery('item_level_2', inQueryOptions, db.item_level_2).slice(0, -1);
生成的inQuery
看起来像这样。
SELECT `item_level_2`.`itemLevel1Id`
FROM `item_level_2` AS `item_level_2`
INNER JOIN `item_level_3` AS `item_level_3`
ON `item_level_2`.`itemLevel3Id` = `item_level_3`.`id`
AND `item_level_3`.`name` LIKE '%def%'
GROUP BY `itemLevel1Id`
HAVING COUNT(*) > 0
最后,将这个生成的查询插入到主查询中。
db.item_level_1.findAndCountAll({
subQuery: false,
distinct: true,
where: {
[Op.or]: [
Sequelize.where(Sequelize.fn('lower', Sequelize.col("item_level_1.name")), Sequelize.Op.like, '%' + searchText + '%'),
Sequelize.where(Sequelize.fn('lower', Sequelize.col("item_level_2.name")), Sequelize.Op.like, '%' + searchText + '%'),
{
id: {
// This is where I am inserting the inline query.
[Op.in]: Sequelize.literal(`(${inQuery})`)
}
}
]
},
attributes: ['id', 'name'],
include: [{
attributes: ['id', 'name'],
model: db.item_level_2,
as: 'item_level_2',
required: true,
include: [{
attributes: ['id', 'name'],
model: db.item_level_3,
as: 'item_level_3',
required: false,
}]
}]
});
关于sequelize.js - sequelize 不包括所有 child ,如果任何一个匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70541443/
127.0.0.1:8000/api/仅包含来自第二个应用程序的 url,但我将两个 url 模块链接到相同的模式。甚至有可能做到这一点吗? 第一个应用程序: from django.urls imp
我目前正在学习 ColdFusion。我有 PHP 背景,对此我有点困惑。 我有一个选择菜单,我希望将选项保存在不同的文件中。 (例如 options.cfm)当我调用文件时,我想在选择菜单中包含选项
字符串: "75,000", "is", "95%", "or", "95/100" "of", "monthly", "income" o/p: "is","%, "or", "/", "of",
我有 4 个 javascript 文件(每个文件对应一个 HTML 文件),所有 4 个文件中的 3 个函数都是相同的。我想找到一个顺利的解决方案,我可以以某种方式分别包含这 3 个函数...是否可
我在 PHP 中有这种情况,其中 include在一台服务器上被遗漏,但在另一台服务器上没有(我没有设置服务器,所以我不能告诉你更多;我不是真正的 devops 人,所以这就是我在这里问的原因)。两台
这是一个模式文件,midi.xsd定义类型,note ,用于存储 MIDI 音符值: 这是另一个模式文件,octaves.xsd使用
我想备份以下文件夹 /home /etc /usr/local /root /var /boot 并排除 /var/tmp /var/run /var/lock /home/*/.thumbnails
如何重新编码具有许多值(包括缺失值)的数值变量,以获得数字 0:n-1哪里n是唯一值的数量,包括 NA ,整齐? 例子: df 1 1000 0 2 1000 0 3 N
选择元素的 html(包括在内)的最佳方法是什么?例如: This is just a test. 而$('#testDiv').html()返回"This is just a test."
我正在尝试设置Varnish来处理本地环境中的ESI包含。 我在虚拟机中运行 Varnish ,内容在主机上运行。 我有两个文件“index.html”和“test.html”。它们都存储在apach
我有以下内容,并且想要检索“ FromEmail”不为空的数据 Simple email@gma
欧海,我正在编写一个小型 PHP 应用程序,使用一个单独的 config.php 文件和一个functions.php,其中包含我将在应用程序中使用的所有自定义函数。现在,我真的必须在每个函数中包含
我知道可以将 JavaScript 放在一个特定的 .js 文件中,然后通过执行以下操作将其包含在任何页面中...... 我注意到,对于包含的这些 .js 文件: 它们实际上不必以 .js 结尾 其
我使用 gwt UIBinder 添加了一些项目到我的 ComboBox。 --select one-- Dispute Referral Form Dispute Settlement Clause
我可以将一个 first.c 文件包含到另一个 second.c 中吗? (我正在做一些套接字编程,以将服务器收到的消息存储在链接列表中,因此在第一个程序中,我尝试保留链接列表和第二个程序套接字编程文
我有一个简单的 Spring MVC 数据项目设置,我试图选择 Admin 中尚不存在的用户列表。 table 。这是我的存储库方法 SELECT u FROM User u WHERE u.id N
在 bash 脚本中,使用什么实用程序以及如何删除两个字符串之间的文本,包括字符串。 原文: (ABC blah1)blah 2(def blah 5)blah 7)(DEF blah 8)blah
我有这个 BST 问题,我试图用 Java 解决,但我不知道为什么它不起作用。问题是: 二叉搜索树 (BST) 是一种二叉树,其中每个值节点大于或等于该节点的所有节点中的值左子树并且小于该树中所有节点
我有一个字符串,其中包含“Dollars”和“Cents”符号。我想删除它们。我试过了 string.replaceAll("[\"\\u00A2\" $]", "") 但它不起作用。正确的做法是什么
我在 stories 和 tags 之间有一个多对多的关系,为保存关系而创建的表是 taxonomies。我想搜索所有具有所有给定标签的故事。 到目前为止我使用的查询是这个,当然它对我不起作用,它返回
我是一名优秀的程序员,十分优秀!