通过表更改 Sequelize 默认外键

Change Sequelize default foreign key with through tables

我有两个 table,appsservices。在 services 上,PRIMARY KEY 设置为名为 orn 的字段。 我在这两个 table 之间创建了一个通过 table 的 apps_servicesappIdserviceId

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

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

但是这里有一个问题,当我使用 app.addService(foundService);(这会在该应用程序实例和 foundService 之间创建一个关系)。当我使用节点调试器时,我发现 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

下面是servicetable,我们可以看到orn列,这是链接到apps_services[=51=的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');
}
};

以下是服务table

是的,您可以从相反的方向提及要使用的字段 table。

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
    });

};