为了账号安全,请及时绑定邮箱和手机立即绑定

Cannot read property 'length' of null

exports.detail = function(req,res){
	var id = req.params.id;
	Movie.findById(id,function(err,movie){
	    Comment
	        .find({movie: id})
		.populate('from', 'name')
		.exec(function(err, comments){
			console.log(comments);  //这里输出 null,这是什么原因
			res.render('detail',{
			    title: movie.title,
			    movie: movie,
			    comments: comments
			})
		})
	})
}


正在回答

1 回答

你是不是没有登陆,需要先登录上,你再试一下

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
node建站攻略(二期)——网站升级
  • 参与学习       51940    人
  • 解答问题       408    个

帮助你深入前后端开发留下的迷惑,为进一步自学打下基础

进入课程

Cannot read property 'length' of null

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信