为什么能在user comment movie三个表中就一定是去user表中关联查询????
//detail page
exports.detail = function (req , res ) {
// var _user = req.session.user;
// //判断是不是有用户了··如果有了··将_user赋值过去
// if(_user){
// app.locals.user = _user;
// }
var id = req.params.id;
Movie.findById(id, function (err,movies) {
//加载评论
Comment
.find({movie:id})
.populate('from','name') //关联查询
.exec(function (err,comments) {
console.log(comments)
res.render('detail',{ //渲染详情页 传入变量
title:'imooc',
movie:movies,
comments:comments
});
})
})
}
为什么能在user comment movie三个表中就一定是去user表中关联查询????