第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在 Angular 7 中使用字符串添加動態(tài)查詢參數?

如何在 Angular 7 中使用字符串添加動態(tài)查詢參數?

翻過高山走不出你 2023-09-20 17:35:58
目前我在屏幕上有多個下拉字段。當選擇的下拉值傳遞到查詢參數時,所以我想創(chuàng)建添加的動態(tài)查詢參數。我的代碼如下     // this is one of the dropdown value    if (this.SearchText) {        query += 'q:' + SearchText + ',';       }// this is the second one of dropdown value     if (this.MakeId) {        makename = this.SpaceToDash(this.MakesList.find(x => x.Id === +this.MakeId).Name);        navigateUrl += '/' + makename;        query += 'merk:' + this.MakeId + ',merkname:' + makename + ',';       }    this.router.navigate([ navigateUrl ], { queryParams: { query } });因此,如果“MakeId”不是下拉值,則不應添加到“queryParams”中,那么我該怎么做。上述解決方案不起作用。在 Angular 2 中應用動態(tài)創(chuàng)建查詢參數的解決方案,但它不符合我的要求。那么你能幫助我嗎?
查看完整描述

1 回答

?
弒天下

TA貢獻1818條經驗 獲得超8個贊

QueryParams 應該采用一個對象而不是字符串,


所以你可以用這種方式來做


let query = {};

// this is one of the dropdown value

if (this.SearchText) {

    query['q'] =  SearchText;

   }

// this is the second one of dropdown value 

if (this.MakeId) {

    makename = this.SpaceToDash(this.MakesList.find(x => x.Id === +this.MakeId).Name);

    navigateUrl += '/' + makename;

    query['merk'] =  this.MakeId;

    query['makename'] =  makename;

   }

this.router.navigate([ navigateUrl ], { queryParams:  query  });


查看完整回答
反對 回復 2023-09-20
  • 1 回答
  • 0 關注
  • 110 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號