当前位置:   article > 正文

关于Proxy 对象代理Array时 Array.prototype.splice() 与Array.prototype.length 清空数组时的表现差异_proxy array

proxy array

当使用Proxy 代理数组 setter 时 代理对象调用 proxy.splice(0) 方法时,只会截获到代理对象length 属性的修改,但此时,原数组已被清空,值为undefined length 还在。

所以使用Proxy 代理数组,需要清空时,直接proxy.lenght=0 进行清空操作,

代码如下

  1. let list=[0,1];
  2. let componentList=[{selected:false},{selected:false}];
  3. let proxy=new Proxy(list,{
  4. set:function(target:[], key:string, value,receiver:any){
  5. if(key==='length'){
  6. if(value===0){
  7. for(let v of list){
  8. componentList[v].selected=false;//#报错位置
  9. }
  10. }
  11. }else{
  12. if(list.includes(value)){
  13. list.splice(list.indexOf(value),1);
  14. componentList[value].selected=false;
  15. }else{
  16. componentList[value].selected=true;
  17. }
  18. }
  19. return Reflect.set(target,key,value,receiver);
  20. }
  21. });
  22. proxy.splice(0);//会报错 因为代理不到删除操作 中会拦截到对length的修改此时数组内元素全为undefined
  23. proxy.lenght=0;// length 清零,然后引擎删掉元素

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/140215
推荐阅读
相关标签
  

闽ICP备14008679号