可向数组插入数据
var reply = {
from: _comment.from,
to: _comment.tid,
content: _comment.content
}
Comment.update({_id:_comment.cid}, {'$push':{reply:reply} } ,function(err,news) {
if(err)console.log(err);
console.log(news);
} );
var reply = {
from: _comment.from,
to: _comment.tid,
content: _comment.content
}
Comment.update({_id:_comment.cid}, {'$push':{reply:reply} } ,function(err,news) {
if(err)console.log(err);
console.log(news);
} );
2018-05-25
现在可以用中间件解决
router.use(function(req,res,next) {
let user = req.session.user
if(!user) {
return res.redirect('/user/signin')
}
next()
})
router.use(function(req,res,next) {
let user = req.session.user
if(!user) {
return res.redirect('/user/signin')
}
next()
})
2018-05-24
grunt mochaTest --timeout=5000
mocha默认每个测试用例最多执行2000毫秒,如果超过这个时间没有返回结果,就会报错
mocha默认每个测试用例最多执行2000毫秒,如果超过这个时间没有返回结果,就会报错
2018-05-24
https://github.com/xupeiMax/movie-by-node
还是贴一下,上个月19号花一天跟完一期,之后因为公司业务迟迟没有时间学习第二期,主要就是学习思路,很感谢慕课网这个平台!
还是贴一下,上个月19号花一天跟完一期,之后因为公司业务迟迟没有时间学习第二期,主要就是学习思路,很感谢慕课网这个平台!
2018-05-13