在跟后端交互的时候传参key值的问题,入股不需要的情况下如何删除key

如果this.priceType是空就不传priceType应该怎么做好点呢

goToMotorcycle() {
 this.$router.push({
 path: 'hot-motorcycle',
 query: {
     priceType: this.priceType,
     brandId: this.brandId,
     select: true,
 } })},
阅读 1.4k
1 个回答
goToMotorcycle() {
 let queryData = {
     priceType: this.priceType,
     brandId: this.brandId,
     select: true,
 }
 Object.keys(queryData).map(key => { if(!queryData[key]) delete queryData[key] })
 this.$router.push({
 path: 'hot-motorcycle',
 query: queryData
})},
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题