Tôi nghĩ bạn nên sử dụng ThuộcToMany
liên kết ở đây.
Bạn có thể xác định liên kết như thế này
Product.belongsToMany(Category, { through: ProductCategory, foreignKey: 'product_id' });
Category.belongsToMany(Product, { through: ProductCategory, foreignKey: 'category_id' });
và truy vấn có thể là
Product.findAll({
include: [Category]
}).then((res) => {
console.log(res);
})