Sequelize: A is not associated to B" nodejs

Sequelize: A is not associated to B" nodejs

我有两个模型,一个是问题,另一个是答案,每个答案都有一个question_id,问题可以有多个答案。

我想在我的 json 回复中包含每个问题的所有答案,但我一直收到错误消息

"message": "answer is not associated to question!"*

下面是问题模型:-

module.exports = (sequelize, Sequelize) => {
    const Question = sequelize.define("question", {
        question_id: {
            type: Sequelize.INTEGER,
            primaryKey: true,
            autoIncrement: true
        },
        question_no: {
            type: Sequelize.DOUBLE,
            allowNull: false
        },
        question_text: {
            type: Sequelize.STRING,
            allowNull: false
        },
        question_text: {
            type: Sequelize.STRING,
            allowNull: false
        },
        question_required: {
            type: Sequelize.BOOLEAN,
        },
        formpage_no: {
            type: Sequelize.DOUBLE,
            allowNull: false
        },
        med_id: {
            type: Sequelize.INTEGER,
            allowNull: false,
            references: {
                model: 'medforms',
                key: 'med_id'
            },
            onUpdate: 'CASCADE',
            onDelete: 'CASCADE'
        },
        med_name: {
            type: Sequelize.STRING,
            allowNull: true
        },
        version_no: {
            type: Sequelize.STRING,
            allowNull: false
        }
    }, {
        freezeTableName: false,  // true: if we want to make table name as we want else sequelize will make them prural
        underscored: true // underscored: true indicates the the column names of the database tables are snake_case rather than camelCase
    });
    Question.associate = function (models) {
        Question.hasMany(models.answer, {
            foreignKey: 'question_id',
            as: 'answers'
        });
        Question.hasMany(models.helpbox, {
            foreignKey: 'question_id',
            as: 'helpboxes'
        });
        // in future each question could have more than one document text
    };
    return Question;
};

下面是我的回答模型:-

module.exports = (sequelize, Sequelize) => {
    const Answer = sequelize.define("answer", {
        answer_id: {
            type: Sequelize.INTEGER,
            primaryKey: true,
            autoIncrement: true
        },
        question_id: { // each answer has one questionId
            type: Sequelize.INTEGER,
            allowNull: false,
            references: {
                model: 'questions',
                key: 'question_id'
            },
            onUpdate: 'CASCADE',
            onDelete: 'CASCADE',
        },
        question_no: {
            type: Sequelize.DOUBLE,
            allowNull: true
        },
        answer_no: {
            type: Sequelize.DOUBLE,
            allowNull: true
        },
        answer_text: {
            type: Sequelize.STRING,
            allowNull: false
        },
        answer_icon: {
            type: Sequelize.STRING,
            allowNull: true
        },
        answer_reply: {
            type: Sequelize.STRING,
            allowNull: true
        },
        answer_logic: {
            type: Sequelize.STRING,
            allowNull: true
        },
        med_name: {
            type: Sequelize.STRING,
            allowNull: true
        },
        version_no: {
            type: Sequelize.STRING,
            allowNull: false
        },
    }, {
        freezeTableName: false,  // true: if we want to make table name as we want else sequelize will make them prural
        underscored: true // underscored: true indicates the the column names of the database tables are snake_case rather than camelCase
    });
    Answer.associate = function (models) {
        Answer.belongsTo(models.question, {
            as: 'questions'
        });
        // in future each question could have more than one document text
    };
    return Answer;
};

下面是index.js class:-

var Sequelize = require('sequelize');
var env = process.env.NODE_ENV || 'development';
var config = require("../config/config.json")[env];
var db = {};

if (config.use_env_variable) {
    var sequelize = new Sequelize(process.env[config.use_env_variable]);
} else {
    var sequelize = new Sequelize(config.database, config.username, config.password, config);
}

db.Sequelize = Sequelize;
db.sequelize = sequelize;

// Models
db.medform = require("./medform.model.js")(sequelize, Sequelize);
db.version = require("./version.model.js")(sequelize, Sequelize);
db.question = require("./question.model.js")(sequelize, Sequelize);
db.helpbox = require("./helpbox.model.js")(sequelize, Sequelize);
db.answer = require("./answer.model.js")(sequelize, Sequelize);
db.document = require("./document.model.js")(sequelize, Sequelize);


module.exports = db;

这是我的问题控制器

// Retrieve Question including answers from the database:
exports.getAllQuesData = (req, res) => {
    const version_no = req.query.version_no;
    const med_id = req.query.med_id;

    var condition = [{ "version_no": version_no }, { "med_id": med_id }];

    Question.findAll({
        include: [
            {
                model: answer,
                as: 'answers'
            }
        ],
        where: condition
    })
        .then(data => {
            res.send(data);
        })
        .catch(err => {
            res.status(500).send({
                message:
                    err.message || "Some error occurred while retrieving questions."
            });
        });
};

请帮助我我做错了什么为什么我的联想不起作用

您没有注册模特协会。看看我的怎么做

Object.keys(db).forEach(function (modelName) {
  if (db[modelName].associate) {
    db[modelName].associate(db)
  }
})