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

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

從下拉列表中過濾重復(fù)值

從下拉列表中過濾重復(fù)值

偶然的你 2022-12-29 16:16:46
我有一個(gè) ColumnDef:  relatedToolsColumns: ColumnDef[] = [  { field: 'toolId', name: 'Tool Number', type: 'dropdown', optionsList: this.tools, optionsListField: 'id', optionsListName: 'toolNo', width: '70%' },  {     field: 'delete', name: 'Delete', type: 'icon-button', width: '30%', sortingDisabled: true, icon: 'delete',     callback: this.deleteRelatedTool.bind(this)  }];我正在使用端點(diǎn)調(diào)用“getGageNoList”訂閱這些工具: ngOnInit() {  this.tool = this.data.tool;  this.readonly = this.data.readonly;   this.tprecmApiService.getGageNoList()     .subscribe((val) => {        this.tools = val;        this.relatedToolsColumns           .find((column: ColumnDef) => column.field === 'toolId')           .optionsList = this.tools;     });  }這就是我所擁有的工具: 工具數(shù)組這就是我在工具顯示的 UI 中所擁有的,當(dāng)前從下拉列表中選擇了兩個(gè)相同的工具編號(hào)。 UI 添加工具顯示The Dropdown list of tools: 網(wǎng)格中工具的下拉列表我需要將這些下拉列表過濾為僅那些尚未顯示在網(wǎng)格上的下拉列表。
查看完整描述

2 回答

?
蝴蝶刀刀

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

this.tools.filter((tool, index, arr) => arr.findIndex(t => t.toolNo === tool.toolNo) === index)

將為您提供一個(gè)數(shù)組,其中與之前的工具編號(hào)相同的工具被過濾掉,因?yàn)?findIndex 返回與該函數(shù)匹配的第一個(gè)項(xiàng)目。


查看完整回答
反對(duì) 回復(fù) 2022-12-29
?
桃花長相依

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

用一些小的js你可以過濾它們

if (!(dropdownTool in toolsArray)) { ... } // push to array you send to HTTML to loop in



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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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