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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

將下面代碼中相似的代碼行分組在一起以進(jìn)行一些數(shù)組過(guò)濾

將下面代碼中相似的代碼行分組在一起以進(jìn)行一些數(shù)組過(guò)濾

繁花不似錦 2023-11-12 15:03:32
我在 if else 條件中重復(fù)使用相同的數(shù)組過(guò)濾器功能,但每種情況下只有屬性不同。有沒(méi)有辦法將它們組合在一起,還是像下面這樣正確?private _filter(value: string, filterIndex, type: string): string[] {    let filterArray = [];    const filterValue = value.toLowerCase();    if (filterIndex == 0) {  // Index for Type      if (type === 'Dsc') {        this.assetTypeData.filter((option) => option.assetTypeDsc.toLowerCase().includes(filterValue)).forEach(element => {          filterArray.push(element.assetTypeDsc)        });      } else {        this.assetTypeData.filter((option) => option.assetTypeCde.toLowerCase().includes(filterValue)).forEach(element => {          filterArray.push(element.assetTypeCde)        });      }    } else if (filterIndex == 1) { // Index for Make      if (type === 'Dsc') {        this.assetMakeData.filter((option) => option.assetMakeDsc.toLowerCase().includes(filterValue)).forEach(element => {          filterArray.push(element.assetMakeDsc)        });      } else {        this.assetMakeData.filter((option) => option.assetMakeCde.toLowerCase().includes(filterValue)).forEach(element => {          filterArray.push(element.assetMakeCde)        });      }}
查看完整描述

1 回答

?
千巷貓影

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊

試圖將所有可以分組的東西分組


private _filter(value: string, filterIndex, type: string): string[] {

    const filterValue = value.toLowerCase();

    return (filterIndex == 0 ? this.assetTypeData : this.assetMakeData)

       .map(option => option[(filterIndex == 0 ? 'assetType': 'assetMake') + type])

       .filter(assetValue => assetValue.toLowerCase().includes(filterValue));

}


查看完整回答
反對(duì) 回復(fù) 2023-11-12
  • 1 回答
  • 0 關(guān)注
  • 127 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)