使用ImmutableJS更新地图列表中的一个键

时间:2016-01-29 11:22:10

标签: javascript immutability immutable.js

immutable.js的文档实际上缺少示例。 有人可以解释一下,我如何在ImmutableJS中执行这样的事情:

function isOdd (v) {
    return v % 2 === 0
}

var collection = [{a: 1, b: 2}, {a: 3, b: 7}, {a: 5, b: 6}];
collection.map(item => {
 if (isOdd(item.b))  {
   item.a = item.a * 2;
 }
 return item;
})

谢谢,抱歉我的英文不好

2 个答案:

答案 0 :(得分:1)

const collection = Immutable.fromJS([{a: 1, b: 2}, {a: 3, b: 7}, {a: 5, b: 6}]);

const isOdd = a => b => b % 2 ? a : a * 2;  

collection
  .map(item => item
      .update('a', a => isOdd(a)(item.get('b'))))

检查此笔的控制台输出: http://codepen.io/anon/pen/Nxzdwe?editors=1012

答案 1 :(得分:0)

所以这是我的版本:

const collection = Immutable.fromJS([{a: 1, b: 2}, {a: 3, b: 7}, {a: 5, b: 6}]);

console.log(
  collection    
    .map(item => {
      if (item.get('b') % 2 == 0) {
        return item.set('a', item.get('a') * 2)
      } else {
        return item;
      }
    }).toJS()
);