更改默认输出格式mongoose nodejs

时间:2015-07-14 10:23:32

标签: node.js mongodb

我在节点js中的架构

var itemSchema = new mongoose.Schema({    
  name: { type: String, required: true },
  value: { type: String }  
});

在查找时,会出现以下结果,

Item.find().exec(callback);给出了结果

[{"one":1},{"two":2},{"three":1},{"four":1}]

但我想要这样的结果,

[{"one":1,"two":2,"three":3,"four":4}]

是否只有迭代方式并形成结果?

请建议我!

0 个答案:

没有答案