本文介绍了使用Immutable.js在OrderedMap中添加项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在OrderedMap的末尾添加项目?

How can I add an Item at the end of an OrderedMap ?

我尝试了

    this.boxes = this.boxes.setIn(data);

感谢您的帮助

推荐答案

一种可行的方法是使用 concat

One possible way of doing it is using concat

var boxes = Immutable.OrderedMap({
  box1: {
    id:1
  },
  box2: {
    id:2
  }
});

var data = Immutable.fromJS({
  box3: {
    id:3
  }
});


var newBoxes = boxes.concat(data);
console.log(newBoxes.toJS());  

将打印出:

这篇关于使用Immutable.js在OrderedMap中添加项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 08:02