Node.Js-_mapValues()在将值绑定到函数时不遵循索引序列

时间:2019-04-09 08:25:29

标签: node.js promise lodash

我有以下代码,orderMap具有值列表。 当我调用fillOrderGroupName时,不会遵循orderMap中存在的值的索引。它叫我的随机索引。

return Promise.props(
  _.mapValues(
    orderGroup,
    fillOrderGroupName
      .bind(null, orderNameCreationAttributes, authorizationHeader)
      .then(function(orderGroupResults) {
        return _.chain(orderGroupResults)
          .values()
          .flatten()
          .value();
      })
  )
);

0 个答案:

没有答案