node.js - 使用直通表更改 Sequelize 默认外键

标签 node.js postgresql express orm sequelize.js

我有两个表, appsservices 。在 services 上,PRIMARY KEY 设置为名为 orn 的字段。
我在这两个表之间创建了一个名为 apps_services 的直通表,其中包含 appIdserviceId

 appId: {
        type: Sequelize.UUID,
        references: {
          model: 'apps',
          key: 'id'
        }
      },

      serviceId: {
        type: Sequelize.STRING,
        references: {
          model: 'services',
          key: 'orn'
        }
      },
但是这里有一个问题,当我使用 app.addService(foundService); (这会在该应用程序实例和 foundService 之间创建关系)。当我使用 Node 调试器时,我发现 sequelize 尝试将 id 插入 serviceId 而不是 orn
Executing (default): INSERT INTO "apps_services" ("id","appId","serviceId","createdAt","updatedAt") VALUES ('8d85f9b9-b472-4165-a345-657a0fe0d8ad','49f3daa4-1df4-4890-92f8-9a06f751ffb7','8cab340d-d11b-4e3b-842c-aeea9a28c368','2021-02-16 00:22:17.919 +00:00','2021-02-16 00:22:17.919 +00:00') RETURNING "id","appId","serviceId","userId","selfGranted","createdAt","updatedAt";
括号中的第三个值,问题是 id 不是外键,但 orn
下面是 service 表,我们可以看到 orn 列,它是链接到 apps_services 表的 PRIMARY KEY 和外键。
有没有办法强制 sequelize 使用 orn 字段?
module.exports = (sequelize, DataTypes) => {
const apps_services = sequelize.define('apps_services', {
    id: {
        type: DataTypes.UUID,
        defaultValue: new DataTypes.UUIDV4(),
        unique: true,
        primaryKey: true
    },
    appId: {
        type: DataTypes.UUID,
    },

    serviceId: {
        type: DataTypes.STRING,
    },
    userId: {
        type: DataTypes.UUID
    },
    selfGranted: DataTypes.BOOLEAN
}, {
    timestamps: true
});

apps_services.associate = function (models) {
    models.apps.belongsToMany(models.services, {
        through: apps_services
    });

    models.services.belongsToMany(models.apps, {
        through: apps_services
    });
};
//apps_services.sync({alter: true});

return apps_services;
};
//这是 apps_services 迁移
module.exports = {
up: async (queryInterface, Sequelize) => {
 await queryInterface.createTable('apps_services', {
   id:{
     type: Sequelize.UUID,
     defaultValue: new Sequelize.UUIDV4(),
     unique: true,
     primaryKey: true
 },
   appId: {
     type: Sequelize.UUID,
     references: {
       model: 'apps',
       key: 'id'
     }
   },

   serviceId: {
     type: Sequelize.STRING,
     references: {
       model: 'services',
       key: 'orn'
     }
   },

   userId: {
     type: Sequelize.UUID,
     references: {
       model: 'Users',
       key: 'id'
     }
   },

   createdAt: {
     allowNull: false,
     type: Sequelize.DATE
   },
   updatedAt: {
     allowNull: false,
     type: Sequelize.DATE
   },
   selfGranted: Sequelize.BOOLEAN,
 });
},

down: async (queryInterface, Sequelize) => {
 await queryInterface.dropTable('apps_services');
}
};
下面是服务表
we can see the orn there

最佳答案

是的,您可以从对面的表格中提及要使用的字段。

apps_services.associate = function (models) {
    
    // you can move this association to apps model file
    models.apps.belongsToMany(models.services, {
        // Reference: https://sequelize.org/master/class/lib/model.js~Model.html#static-method-belongsToMany
        through: 'apps_services',
        foreignKey: 'appId', // <-- add this
    });
    
    // you can move this association to services model file
    models.services.belongsToMany(models.apps, {
        through: 'apps_services',
        foreignKey: 'serviceId', // <-- add this - name of field in through table
        otherKey: 'orn', // <-- add this - name of field in source table
    });
    
    /**
     * new relation below just to complete the Many to Many relation
     */
    // you can add this association in app_services model file
    models.apps_services.belongsTo(models.services, {
        // Reference: https://sequelize.org/master/class/lib/model.js~Model.html#static-method-belongsTo
        foreignKey: 'serviceId', // <--- name of field in source table
        targetKey: 'orn', // <--- name of field in target table
    });
    
    // you can add this association in app_services model file
    models.apps_services.belongsTo(models.apps, {
        foreignKey: 'appId', // <--- name of field in source table
        // targetKey: 'id', //(not needed as already primary key by default) <--- name of field in target table
    });

};

关于node.js - 使用直通表更改 Sequelize 默认外键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66221799/

相关文章:

node.js - 如何根据 Excel 值多次运行 Protractor Spec

javascript - MongoDB 将字段和切片投影限制在一起

sql - information_schema 中referential_constraints.unique_constraint* 列的NULL 值

sql - 如何在没有记录的情况下有选择地加入另一个表中具有不同日期范围的日历表以获取计数?

Node.js:在 Sequelize 中定义 Postgres 模式

javascript - req.body.data 在expressjs中未定义

node.js - 未捕获( promise 中)错误 : FIRESTORE (4. 10.1)内部断言失败:未知关系:数组包含

javascript - 在 AngularJS 应用程序中,可以引用 Bower 和 Node 文件夹内的文件吗?

javascript - 使用express在前端读取Base64图像

javascript - 无法使用 MySQL 和 ReactJS 显示行