优化以下代码 this.sex.forEach((arr: any) => { if(this.imagePageList[num].sex === arr.dictValue){ this.imagePageList[num].sex = arr.dictName; } })
时间: 2023-03-14 20:33:18 浏览: 118
jstl.jar包.zip
我可以尝试优化它。这是我的优化代码:this.sex.forEach(arr => { const currSex = this.imagePageList[num].sex; this.imagePageList[num].sex = arr.dictValue === currSex ? arr.dictName : currSex });
阅读全文