Redux State中的deep clone
最近前端出现了性能问题,页面操作会越来越卡顿,最终导致内存溢出。元凶肯定就是开发人员-我们自己,而凶器呢-deepclone
比如有这样一个reducer
1 | const updateDetailReducer = (state: IDetailState, action) => { |
这个有问题吗?从结果来说确实没问题,因为它正常更新了状态。
最近前端出现了性能问题,页面操作会越来越卡顿,最终导致内存溢出。元凶肯定就是开发人员-我们自己,而凶器呢-deepclone
比如有这样一个reducer
1 | const updateDetailReducer = (state: IDetailState, action) => { |
这个有问题吗?从结果来说确实没问题,因为它正常更新了状态。
一直对这三个概念,模糊不清,于是决定梳理下。
A method is a function which is a property of an object. There are two kind of methods: Instance Methods which are built-in tasks performed by an object instance, or Static Methods which are tasks that are called directly on an object constructor.
一个方法就是一个函数,是对象的属性之一。有两种类型的方法:实例方法是由对象实例执行的内置任务,另一种是静态方法,在对象构造函数内直接调用的任务。
以上摘自MDN