es6过滤对象里面指定的不要的值filter过滤

//过滤出需要的值
       this.dataItemTypeSelectOption = response.data.filter(ele => ele.dictValue === 'tree'||ele.dictValue === 'float4');
   

 //过滤不需要的值
       this.dataItemTypeSelectOption = response.data.filter((item) => {
       return item.dictValue !== "float4"&&item.dictValue !== "tree"&&item.dictValue !== "float";
        });

过滤前

数据类型

es6过滤对象里面指定的不要的值filter过滤_第1张图片es6过滤对象里面指定的不要的值filter过滤_第2张图片

过滤后

es6过滤对象里面指定的不要的值filter过滤_第3张图片

你可能感兴趣的:(es6,前端)