如图,searchData是一个对象,想在搜索的时候去掉其中满足条件的几个属性,有什么更好的写法吗
const { interviewStatus, status, ...rest } = this.searchData;
if (status !== "1") {
rest.status = status;
}
// 使用rest
api.get(rest)
async search(){
Reflect.deleteProperty(this.searchData.interviewStatus)
Reflect.deleteProperty(this.searchData,this.form.status==='1'?'status':'isChooseAllDelivery')
}
async search(){
delete this.searchData.interviewStatus;
var str = this.from.status === "1"? status :searchChooseAllDeliverty;
delete this.searchData[str];
}
let deleteKeys = ['interviewStatus']
deleteKeys.push(this.form.status === '1' ? 'status' : 'isChooseAllDelivery')
deleteKeys.forEach(key => {
delete this.searchData[key]
})
6 回答2.9k 阅读✓ 已解决
8 回答4.6k 阅读✓ 已解决
6 回答3.3k 阅读✓ 已解决
5 回答2.8k 阅读✓ 已解决
6 回答2.2k 阅读
5 回答6.3k 阅读✓ 已解决
4 回答2.2k 阅读✓ 已解决
写了这么多年代码,你现在这种写法是最容易阅读的。越优雅的代码,越难看懂,并不是代码越少越好。代码压缩交给工具做就好了,自己写保证逻辑清晰易懂就i行