简体   繁体   English

续集:A 与 B 无关” nodejs

[英]Sequelize: A is not associated to B" nodejs

I have two models in which one is Question and other is Answer, each answer has one question_id and question can have more then one answers.我有两种模型,一种是问题,另一种是答案,每个答案都有一个 question_id,问题可以有多个答案。

I want to include all the answers of each question in my json response but I am keep getting an error我想在我的 json 响应中包含每个问题的所有答案,但我一直收到错误

"message": "answer is not associated to question!"* "message": "答案与问题无关!"*

Below is the Question model:-以下是问题模型:-

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

And below is my answer model:-以下是我的答案模型:-

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

below is the index.js class:-下面是 index.js 类:-

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;

This is my question controller这是我的问题控制器

// 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."
            });
        });
};

Please help me what I am doing wrong why my associations are not working请帮助我我做错了什么为什么我的协会不起作用

You didn't register model associations.您没有注册模型关联。 See my answer how to do it看我的回答怎么做

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM