5

我有一个用于动态问答的当前关系模型。我正在尝试查看是否可以将架构转换为 MongoDB 以获得性能和灵活性。

我们基本上有一系列问题和问题类型。这些问题被放在一个问题集中。

这些问题是按特定顺序提出的,但对于某些问题,取决于答案,下一个问题可能会有所不同。

例如,如果 Q1=YES 然后问问题 Q9 否则问问题 Q2

关于如何在没有我目前使用的各种关系任务的情况下设计这样一个模式的任何想法?

4

2 回答 2

11

沿着这个结构的线怎么样:

{ 
    "Questions" : 
    [
        {
            "QuestionNumber": "Q1",
            "QuestionType" : "YESNO",
            "QuestionText" : "Are you happy today?",
            "Answers" : 
            [ 
                { 
                    "Text" : "YES", 
                    "NextQuestionIfAnswered" : "Q9" 
                }, 
                { 
                    "Text" : "No", 
                    "NextQuestionIfAnswered" : "Q2" 
                }
            ],
        },

        {
            "QuestionNumber": "Q2",
            "QuestionType" : "MULTIPLE",
            "QuestionText" : "Why aren't you happy?",
            "Answers" : 
            [ 
                { 
                    "Text" : "Dog died", 
                    "NextQuestionIfAnswered" : "" 
                }, 
                { 
                    "Text" : "I'm just generally sad", 
                    "NextQuestionIfAnswered" : "" 
                }
            ],
        },
        {
            "QuestionNumber": "Q9",
            "QuestionType" : "TEXTBOX",
            "QuestionText" : "Type why you are happy into the box below",
            "Answers" : []
        }
    ]
}

因此,您有一系列问题,每个问题都有一个问题编号、问题类型(用于呈现决策),并且每个可能的答案都包括您在选择指定答案时导航到的问题编号。

您还可以通过在数组中的每个“答案”上添加 userAnswer 属性来存储用户对本文档中每个问题的答案。但根据您的用户数量,您可能希望将其保存在单独的集合中。

于 2013-10-30T02:19:29.527 回答
1

我是这样设计的

const { Schema } = mongoose;

const QuestionsSchema = new Schema({
  questionId: { type: String },
  questionText: { type: String, required: true, unique: true },
  options: { type: Array, required: true },
  marks: { type: Number, required: true },
  difficultyLevel: { type: Number },
  questionType: { type: String, required: true },
  correctOptions: { type: Array, required: true },
  addedAt: { type: Date, default: Date.now }
});

module.exports = mongoose.model("questions", QuestionsSchema, "questions");

API 响应

    "questionText": "Select correct option1?",
    "options": [
        {
            "option1": "1",
            "isCorrect": false
        },
        {
            "option2": "2",
            "isCorrect": true
        },
        {
            "option3": "3",
            "isCorrect": false
        },
        {
            "option3": "3",
            "isCorrect": false
        }
    ],
    "marks": 1,
    "difficultyLevel": 1,
    "correctOptions": [
        1
    ],
    "questionType": "MCQ"
}
于 2020-03-13T10:28:27.887 回答