updateIn immutable.js

Posted 酱板鸡

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了updateIn immutable.js相关的知识,希望对你有一定的参考价值。

这个里面的回调的形参即代表选取得元素

var someObject = {
    a: {b: [1,2]}
}

fromJS(someObject).updateIn([‘a‘, ‘b‘], arr => arr.push(4));  // 执行结果b的值变为[1,2,4]
这里arr就是[1,2]这个数组

以上是关于updateIn immutable.js的主要内容,如果未能解决你的问题,请参考以下文章

[Immutable,js] Iterating Over an Immutable.js Map()

[Immutable.js] Converting Immutable.js Structures to Javascript and other Immutable Types

[Immutable.js] Exploring Sequences and Range() in Immutable.js

[Immutable.js] Working with Subsets of an Immutable.js Map()

[Immutable.js] Lightning Fast Immutable.js Equality Checks with Hash Codes

[Immutable.js] Differences between the Immutable.js Map() and List()