Не удается получить данные из связанной модели - PullRequest
0 голосов
/ 25 мая 2018

У меня есть модель пользователя и модель профиля.

const mongoose = require('mongoose');
const Schema = mongoose.Schema;

const UserSchema = new Schema({
  name: {
    type: String,
    required: true
  },
  email: {
    type: String,
    required: true
  },
  password: {
    type: String,
    required: true
  }
});

module.exports = User = mongoose.model('users', UserSchema);

const mongoose = require('mongoose');
const Schema = mongoose.Schema;

const ProfileSchema = new Schema({
  user: {
    type: Schema.Types.ObjectId,
    ref: 'users'
  },
  handle: {
    type: String,
    required: true
  },
  bio: {
    type: String,
    required: true
  },
  location: {
    type: String,
    required: true
  }
});

module.exports = Profile = mongoose.model('profile', ProfileSchema);

Я пытаюсь получить имя пользователя и адрес электронной почты по следующему маршруту:

router.get('/', passport.authenticate('jwt', { session: false} ), (req, res) => {
  console.log(req.user);
  Profile.findOne({ user: req.user.id })
    .populate('user', ['name', 'email'])
    .then(profile => {
      if (!profile) {
        return res.status(404).json({error: 'Profile not found!'})
      }

      res.json(profile);
    })
    .catch(err => res.status(404).json(err));
});

Я продолжаю возвращать «Профиль не найден», даже если пользователь существует вмоя база данныхЯ также знаю, что идентификатор передается, потому что console.log (req.user) регистрирует следующее:

[0] Listening on port 8080!
[0] MongoDB connected
[0] { _id: 5afcab77c4b9a9030eee35a7,
[0]   name: 'Harry',
[0]   email: 'harry@gmail.com',
[0]   password: '$2a$10$vOkK/Mpx04cR06Pon0t.2u5iKqGXetGuajKTZyBvLNWwgPjN6RO3q',
[0]   __v: 0 }

Передача req.user.id в Profile.findOne должна получить профиль и связанных пользователейимя и адрес электронной почты, но я ничего не могу вернуть.Любая помощь будет принята с благодарностью, спасибо!

Это документ профиля, как он появляется в базе данных:

{
    "_id": {
        "$oid": "5b0715288ae56b028b442e7b"
    },
    "handle": "johndoe",
    "bio": "Hi, my name is John and I live in Toronto, ON, Canada!",
    "location": "Toronto, ON",
    "__v": 0
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...