MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Projekt schematu MongoDB dla wielu pytań i odpowiedzi do wyboru

Stworzyłem schemat mangusty dla każdego wymaganego szczegółu. Możesz skorzystać z pomocy. Trochę przeanalizowałem Twoje wymagania i dodałem modele dla wielu schematów, schemat pierwszego pytania, wyeksportowany jako model

import { Schema } from 'mongoose';
import { AnswerOptionSchema } from './answer-option-schema';
const mongoose = require('mongoose');

export const QuestionSchema: Schema = new Schema({
  question: {
    type: String,
    minlength: 10,
    maxlength: 1000,
  },
  answerOptions: {
    type: [AnswerOptionSchema],
    default: undefined,
    validate: {
      validator: function(value: any) {
        return value && value.length === 4;
      },
      message: 'Answer options should be 4.'
    }
  }
}, {
  timestamps: true
});

export const Question = mongoose.model('Question', QuestionSchema);

i tutaj w QuestionSchema , mam osadzony AnswerOptionSchema jako

import { Schema } from 'mongoose';

export const AnswerOptionSchema: Schema = new Schema({
  optionNumber: {
    type: Number
  },
  answerBody: {
    type: String,
    minlength: 1,
    maxlength: 200,
  },
  isCorrectAnswer: { // you can store the correct answer with question id in another model.
    type: Boolean,
    default: false
  }
}, {
  _id: false
});

Za pomocą tych schematów stworzyłem QuestionSetSchema aby dodać zestaw schematów pytań jako

import { Schema } from "mongoose";
import { QuestionSchema } from "./question-schema";
const mongoose = require('mongoose');

export const QuestionSetSchema: Schema = new Schema({
  questionSet: {
    type: [QuestionSchema],
    validate: {
      validator: function(value: any) {
        return value.length === 12;
      },
      message: 'Question set must be 12.'
    }
  },
}, {
  timestamps: true
});

export const QuestionSet = mongoose.model('QuestionSet', QuestionSetSchema);

Teraz przygotowany z pytaniem, opcjami odpowiedzi i zestawem, teraz trzeba zaprojektować kandydujący schemat,

import { Schema } from "mongoose";
const mongoose = require('mongoose');

export const CandidateSchema: Schema = new Schema({
  name: String,
  email: String, // you can store other candidate related information here.
  totalAttempt: {
    type: Number,
    default: 0,
    validate: {
      validator: function(value: number) {
        return value === 3;
      },
      message: 'You have already done three attempts.'
    }
  },
  candidateQuestionAnswers: {
    type: [Schema.Types.ObjectId],
    ref: 'CandidateQuesAnswer'
  }
}, {
  timestamps: true
});

export const Candidate = mongoose.model('Candidate', CandidateSchema);

Tutaj, jak zauważysz, obliczam również sumę prób kandydata i odpowiedzi dla każdego zestawu podanego przez niego w CandidateQuesAnswer Model. Ten model ma strukturę jak

import { Schema } from "mongoose";

export const CandidateQuesAnswerSchema = new Schema({
  candidate: {
    type: Schema.Types.ObjectId,
    ref: 'Candidate'
  },
  questionSet: {
    type: Schema.Types.ObjectId,
    ref: 'QuestionSet'
  },
  questionAnswers: {
    type: [Number] // You can add answer schema
  },
  totalScore: {
    type: Number
  },
  isPassed: {
    type: Boolean,
    default: false
  }
}, {
  timestamps: true
});

CandidateQuesAnswerSchema.pre('save', function updateTotalScore(next) {
  // update total score of the candidate here based on the correct questionAnswers and
  // questionSet.
  next();
});

CandidateQuesAnswerSchema.pre('save', function updateIsPassed(next) {
  // update the isPassed based on the totalScore obtained by the candidate.
  next();
});

export const CandidateQuesAnswer = mongoose.model('CandidateAnswer', CandidateQuesAnswerSchema);

Gdzie użyłem pre save haki dostarczone przez mongoose , przed zapisaniem dokumentu i obliczeniem wartości, aby zadeklarować, że kandydat zaliczony lub niezaliczony.



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Połączenie z mangustą

  2. Zapytanie MongoDB z warunkowym grupowaniem według instrukcji

  3. Próbuję uruchomić serwer mongod na ubuntu :wyjątek w initAndListen:29 Nie znaleziono katalogu danych /data/db., przerywanie

  4. Pobieranie MongoDB w systemie Linux do nasłuchiwania połączeń zdalnych

  5. dodaj pola created_at i updated_at do schematów mangusty