Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

JS有优雅的方式给对象赋值吗?值为空,则不保留key

场景:

传给ajax的params,参数值为空则不保留key,如
let params = {
    age: this.age ? age : '',
    curPage: 1,
    prePage: 20,
}

这样写如果要判断0或者false就要写很长一串,有更优雅的方法吗?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
{
  age: this.age || undefined
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...