ArticleSchema.statics = {
  load: function (id, cb) {
    this.findOne({
      _id: id
    }).populate('user', 'name username').exec(cb);