mongoose populate
|
|
populate中的path的值必须为issue集合里的字段,比如这里belongLineId是issue里的字段populate中的select的值必须为line集合里的字段,比如这里name为line集合的字段
显示CastError: Cast to ObjectId failed for value ,length为0
通常是在schema中忘记添加相应地字段,或者在controller里render时忘记传递字段值
出现can’t set header after they are sent
通常是controller里render了两次,或者redirect了两次
find()与findOne()的区别
|
|
find(id)是遍历出所有的数组findOne({_id:id})是查找出一个这个id浏览器当前页面参数相同的值
打印出当前用户
req.session.user._idreq.session.user.name
转换日期
npm install moment --save#{moment(issue.start).format('YYYY/MM/DD')}