如何在查询到数据后对数据就行操作
Blog.find().select(‘title time.day type id’).exec(function(err,data){ res.render(‘home/index’,{ blogs: data, title:‘Express’ }); });
这里我查询到到数据数组data后直接在首页foreach出来,但是想用moment做一个发布于xx日之前的功能,不知道怎么操作查询到到数据