SequelizeEagerLoadingError: Роль не связана с пользователем - PullRequest
1 голос
/ 07 марта 2019

Я использую Sequelize с MYSQL и express. Я получаю SequelizeEagerLoadingError: Роль не связана с пользователем при попытке выбрать данные из связанных моделей с использованием include.

У меня две модели: пользователь и роль. Пользователь принадлежит к ролям пользователя через RoleUser, а пользователь принадлежит к ролям пользователя через RoleUser. Вот мои модели:

// Модель пользователя

'use strict';

module.exports = (sequelize, DataTypes) => {
  const User = sequelize.define('User', {
    id: {type:DataTypes.UUID,allowNull:false,unique:true,primaryKey:true},
    UserName: {type:DataTypes.STRING,unique:true,allowNull:false},
     Email: {type:DataTypes.STRING,allowNull:false,unique:true,validate: { isEmail: {msg: "Invalid Email"} }},
    Password: {type:DataTypes.STRING,allowNull:false},

  }, {});
  User.associate = function(models) {


        User.belongsToMany(models.Role,
            {
        through: 'RoleUser',
        foreignkey:'UserId'

    })




 };
  return User;
};

//Role Model
'use strict';
module.exports = (sequelize, DataTypes) => {
  const Role = sequelize.define('Role', {
    id: {type:DataTypes.UUID,allowNull:false,unique:true,primaryKey:true},
    Name: DataTypes.STRING,
    Description: DataTypes.STRING
  }, {});
  Role.associate = function(models) {
    Role.belongsToMany(models.User,
        {
            through:'RoleUser',
            foreignKey:'RoleId'

        }),


  };
  return Role;
};

//My query on user model

xports.index = function(req, res) {
  return User.findAll({ 
          include: [{
          model: Role,

        }],

    attributes:{
        exclude: ['Password','createdAt','updatedAt']

    }}).then((users)=>{
    console.log(users)
    }).catch(error=>{
    console.log(error);
    })

// ОШИБКА

 SequelizeEagerLoadingError: Role is not associated to User!

 **STATUS CODE: 200(OK)**

 I am getting same error in other models in the entire project. According to me the associations is correctly established and I can see in the PHPMyAdmin Relation View.

 *Express Version: 4.16.4
 Sequelize Version: 4.31.2
 Mysql2 version: 1.6.1*

 Any help. What am I doing wrong.

1 Ответ

0 голосов
/ 07 марта 2019

Хорошо, так что вам нужно указать, как вы собираетесь вызывать включение.

User.associate = function(models) {
  User.belongsToMany(models.Role,{
    through: 'RoleUser',
    foreignkey:'UserId',
    as: 'Roles'
  })
};

Вам необходимо выполнить другой путь защиты от ролей для пользователей, если вам это нужно, и с любой другой ассоциацией.Тогда по вашему запросу:

User.findAll({ 
  include: [{
    model: Role,
    as: 'Roles'
  }],
  attributes:{ exclude: ['Password','createdAt','updatedAt'] }
})
...