Заполнить коллекцию, используя ref в схеме mongoose - PullRequest
0 голосов
/ 24 апреля 2018

Я хочу заполнить сбор кредитов в коллекции пользователей, вот моя кредитная схема

const CreditSchema = new Schema({
  userId: Schema.Types.ObjectId,
  credit: {
    type: Number,
    default: 0
  },
  log: [String]
})

И моя пользовательская схема вот так

const UserSchema = new Schema({
  fullName: {
    type: String,
    trim: true,
    required: true
  },
  email: {
    type: String,
    unique: true,
    lowercase: true,
    trim: true,
    required: true
  },
  password: {
    type: String,
    required: true
  },
  credit: {type: Schema.Types.ObjectId, ref: 'Credit' } //I suspect something is not right here
})

Почему я не вижу кредит в объекте пользователя ниже?

const user = await User.findOne({_id: req.query.id})
.populate('credit')
.exec()

console.log(user) // credit field is not present?
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...