기본 콘텐츠로 건너뛰기

add custom field to mongodb doc after querying

https://stackoverflow.com/questions/27399048/mongoose-add-data-to-returned-result-set

searchQuery.exec(function (err, authors) {
   authors = authors.map(function(author) {
       author.set('thumbnail', 'test', {strict: false});
       return author;
   });
   res.json(authors);
});

댓글

이 블로그의 인기 게시물