Mongoose 给遍历对象添加属性后通过 console.log 不显示
发布于 1天前 作者 zhuzhichao 56 次浏览 来自 问答

使用的是 keystone 框架。 查询数据后,使用 _.map() 遍历分页结果并给每个结果添加一个处理后的属性

通过 console.log(item) 出来的结果中找不到添加的属性,但是 console.log(item.url) 却能得到值。 大家有没有遇到这样的情况,类似这样的情况如何处理

  Artwork.paginate({
    page: req.query.page || 1,
    perPage: perPage,
    maxPages: maxPages
  })
    .where('createdBy', locals.data.user.id)
    .sort('-updatedAt')
    .exec(function (err, results) {
      results.results = _.map(results.results, function(item) {
        item.url = cloudinary.url(item.photo.public_id, {width: 270, crop: 'fit'});
        console.log(item);
        console.log(item.url);
        return item;
      });
      res.json(results);
    });
回到顶部