为什么总是提示Cannot read property 'reply' of undefine?
Comment.findById(_comment.cid,function(){
var reply={
from:_comment.from,
to:_comment.tid,
content:_comment.content
}
comment.reply.push(reply)
comment.save(function(err,comment){
if(err){
console.log(err)
}
res.redirect('/movie/'+movieId)
})
})
不知道为什么,总是提示reply是undefined,始终没办法保存评论内容?