Sequelize include - 不包括(删除)数据透视数据

2022-01-19 00:00:00 node.js javascript sequelize.js

我正在使用节点的 Sequelize 包.我有一个典型的包含人对多的关系.

I'm using the Sequelize package for node. I have a typical include on man to many relationship.

Item.findAll({
    include: {model: Blah: as 'blahs'}
});

一切正常,但它返回每个子项目的数据透视集.我不需要它.有什么方法可以禁用它或指定所需的数据透视字段?

All works well but it returns the set with the pivot data on each sub item. I don't need it. Is there any way to disable it or to specify the pivot fields needed?

推荐答案

找到我的答案:

{model: Model, as: 'model', through: {attributes: []}}

相关文章