我有以下代码,orderMap具有值列表。 当我调用fillOrderGroupName时,不会遵循orderMap中存在的值的索引。它叫我的随机索引。
return Promise.props(
_.mapValues(
orderGroup,
fillOrderGroupName
.bind(null, orderNameCreationAttributes, authorizationHeader)
.then(function(orderGroupResults) {
return _.chain(orderGroupResults)
.values()
.flatten()
.value();
})
)
);