PostModel.findAsync({author:author}).populateAsync('author')
.then(function (posts) {
res.render('posts', {
posts: posts
});
})
.catch(next);
bluebird这个库的populate是怎么用的呢?