作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两张 table :tbl_product
, tbl_product_category
我想制作一个接受关键字并返回与关键字匹配的所有产品和产品类别的 API。
如果 tbl_product
的结果然后它也返回它是产品。
如果 tbl_product_category
的结果然后它也返回它是类别。
tbl_product_catagory.findAll({
raw: true,
attributes: [[sequelize.literal("catagory_name"), "type"]],
include: [{
model: tbl_product,
attributes: [[sequelize.literal(["product_name"]), "name"]],
required: false,
where: {
product_name: {
[Op.like]: "%" + data.word + "%"
}
}
}]
})
最佳答案
关于javascript - 如何在 Sequelize 中使用 UNION ..?或者像 UNION 这样的任何其他方法都期望 promise.All...?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50986817/
我是一名优秀的程序员,十分优秀!