问题会造成多对多的关联。 (属于Tony)

问题描述 投票:0回答:1

当我定义两个表之间的多对多关联时,出现以下错误:

Error: Teacher.belongsToMany called with something that's not a subclass of Sequelize.Model

我将解释我的情况。

我有教师和课程表,为了创建关联,我创建了一个名为courses_teachers的数据透视表。

课程老师的迁移代码:

module.exports = {
  up: (queryInterface, Sequelize) => {
    return queryInterface.createTable('courses_teachers', {
      id: {
        type: Sequelize.INTEGER,
        allowNull: false,
        autoIncrement: true,
        primaryKey: true,
      },
      course_id: {
        type: Sequelize.INTEGER,
        allowNull: false,
        references: { model: 'courses', key: 'id' },
        onDelete: 'CASCADE',
        onUpdate: 'CASCADE',
      },
      teacher_id: {
        type: Sequelize.INTEGER,
        allowNull: false,
        references: { model: 'teachers', key: 'id' },
        onDelete: 'CASCADE',
        onUpdate: 'CASCADE',
      },
      created_at: {
        type: Sequelize.DATE,
        allowNull: false,
      },
      updated_at: {
        type: Sequelize.DATE,
        allowNull: false,
      },
    });
  },

  down: (queryInterface) => {
    return queryInterface.dropTable('courses_teachers');
  },
};

型号:

老师:

import Sequelize, { Model } from 'sequelize';

class Teacher extends Model {
  static init(sequelize) {
    super.init(
      {
        name: Sequelize.STRING,
      },
      {
        sequelize,
      }
    );

    return this;
  }

  static associate(models) {
    this.belongsToMany(models.Course, {
      foreignKey: 'teacher_id',
      through: 'courses_teachers',
      as: 'courses',
    });
  }
}

export default Teacher;

课程:

import Sequelize, { Model } from 'sequelize';

class Courses extends Model {
  static init(sequelize) {
    super.init(
      {
        name: Sequelize.STRING,
      },
      {
        sequelize,
      }
    );
    return this;
  }

  static associate(models) {
    this.belongsToMany(models.Teacher, {
      foreignKey: 'course_id',
      through: 'courses_teachers',
      as: 'teachers',
    });
  }
}

export default Courses; 

错误:

C:\eadfabet\node_modules\sequelize\lib\associations\mixin.js:49 throw new Error(`${this.name}.belongsToMany called with something that's not a subclass of Sequelize.Model`);
      ^

Error: Teacher.belongsToMany called with something that's not a subclass of Sequelize.Model
    at Function.belongsToMany (C:\eadfabet\node_modules\sequelize\lib\associations\mixin.js:49:13)
    at Function.associate (C:\eadfabet\src\app\models\Teacher.js:33:10)
    at C:\eadfabet\src\database\index.js:26:45
    at Array.map (<anonymous>)
    at Database.init (C:\eadfabet\src\database\index.js:25:8)
    at new Database (C:\eadfabet\src\database\index.js:17:10)
    at Object.<anonymous> (C:\eadfabet\src\database\index.js:31:20) ...

[nodemon] app crashed - waiting for file changes before starting... 

错误仅在模型老师中发生,在模型课程中则没有发生。

node.js postgresql sequelize.js associations has-and-belongs-to-many
1个回答
0
投票
我未正确提及示范课程。

谢谢@威廉·普里戈尔·洛佩斯!

© www.soinside.com 2019 - 2024. All rights reserved.