如何在续集中使用UNION?或者像UNION这样的任何其他方法都可以期待promise.All ...?

时间:2018-06-22 11:20:10

标签: javascript node.js sequelize.js

我有两个表:tbl_producttbl_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 + "%"
      }
    }
  }]
})

2 个答案:

答案 0 :(得分:3)

根据thisthis的答案,我们可以得出结论,续集对工会没有很好的支持。

答案 1 :(得分:3)

我知道这已经很老了,但我喜欢使用 nodejs 来解决这个问题,因为 sequelize 还没有联合支持。很简单,但有时我们没有意识到这一点:

示例:

Promise.all([
    Blog.findAll({ include: { model: Author, required: true } }),
    Blog.findAll({ include: { model: AnonymInfo, required: true } }),
]).then((modelReturn) => resolve(modelReturn.flat()))