我正在尝试使用下划线合并 2 个对象。目标对象是一个 mongoose 模型,但我已经应用lean()
到它以使其返回一个 javascript 对象而不是一个 mongo 文档。
model.find({}).lean().exec(function (error, object) {});
然后我尝试使用下划线扩展
_.extend(object, source);
但它只返回源对象。我尝试过使用简单的对象进行测试并且效果很好,所以我假设它与猫鼬有关?
有效的简单对象是:
{foo:'foo'},{bar:'bar'}
我试图合并但无法合并的对象是:
{
_id: 526540eaa77883d815000029,
name: 'House',
description: '',
type: 'residential',
cost: 100,
buildTime: 5,
resources: { produces: [], required: { wood: 5 } },
population: { provides: 10, required: 0 },
requires: [],
maxLevel: 5,
upgrades:
{ '2': { resourceMultiplier: 1.2, cost: 150, time: 5 },
'3': { resourceMultiplier: 1.5, cost: 200, time: 7 },
'4': { resourceMultiplier: 2, cost: 300, time: 10 },
'5': { resourceMultiplier: 2.5, cost: 500, time: 15 } },
scale: { x: 1, y: 1, z: 1 }
}
{
empireId: '52654578a4eff60000000001',
buildingId: '526540eaa77883d815000029',
level: 1,
isComplete: false,
isUpgrading: false,
gridId: '175|0|125',
started: 1382442513823,
_id: 526666113fccae68be000003,
__v: 0
}
有人遇到过这个或知道我哪里出错了吗?