我在节点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}]
是否只有迭代方式并形成结果?
请建议我!