redux的笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redux的笔记相关的知识,希望对你有一定的参考价值。
immutable js-->不可变得数据,或者不要修改的数据
基础类型与引用类型:
var a = {name:"will",things:[0,1,2]} var b = Object.assign({},a,{name:"Fred"}) //此时如果 b.things.push(3); //输出 a.things//[0,1,2,3] //这是我们不想得到的结果.immutable的大致含义? //因此应该这样做 b.things = a.things.concat(3); //此时输出 a.things;//[0,1,2] b.things;//[0,1,2,3]
in order to keep data pristine and keep a full record of history as data changes;
为了能够保证数据的原始性,跟踪一系列的数据的变化记录.
以上是关于redux的笔记的主要内容,如果未能解决你的问题,请参考以下文章