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

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

如何循環(huán)遍歷 reactjs 上的對象數(shù)組,然后根據(jù)條件刪除對象

如何循環(huán)遍歷 reactjs 上的對象數(shù)組,然后根據(jù)條件刪除對象

大話西游666 2023-06-09 10:41:38
我正在使用reactjs下面的數(shù)據(jù),我想遍歷數(shù)組然后if key === "oneline" or key === "twoline"刪除整個對象。在這個例子中,在移除兩個對象(轉(zhuǎn)換)之后,根據(jù)上面的描述,它只會返回數(shù)組中0和內(nèi)部的對象。3const data = [    {0: {key: "zeroline", door: "zero"}},    {1: {key: "oneline", door: "one"}},    {2: {key: "twoline", door: "two"}},    {3: {key: "threeline", door: "three"}}, ]任何幫助都會非常有幫助。
查看完整描述

3 回答

?
慕勒3428872

TA貢獻(xiàn)1848條經(jīng)驗 獲得超6個贊

使用數(shù)組過濾方法。filter() 方法創(chuàng)建一個數(shù)組,其中填充了所有通過測試的數(shù)組元素。數(shù)組過濾器的語法:array.filter(function(currentValue, index, arr), thisValue)


const data = [

  { 0: { key: "zeroline", door: "zero" } },

  { 1: { key: "oneline", door: "one" } },

  { 2: { key: "twoline", door: "two" } },

  { 3: { key: "threeline", door: "three" } },

];


let ret = data.filter((x, i) => x[i].key !== "oneline" && x[i].key !== "twoline");

console.log(ret);


查看完整回答
反對 回復(fù) 2023-06-09
?
慕的地6264312

TA貢獻(xiàn)1817條經(jīng)驗 獲得超6個贊

一種方法是:


const result = Object.keys(data).reduce((filtered,key,index) => {

   //Getting specific object of array

   //Example for first: data[0]["0"] === {key: "zeroline",door "zero"}

   const object = data[index][key];

   

   //Check if object key is zeroline or twoline

   if(object.key === "zeroline" || object.key === "twoline"){

     //If it is we push object to array

     filtered.push(object)

    }

   return filtered

},[])


查看完整回答
反對 回復(fù) 2023-06-09
?
慕尼黑的夜晚無繁華

TA貢獻(xiàn)1864條經(jīng)驗 獲得超6個贊

你可以用過濾掉它Array#filter。


const keywords = ['twoline', 'oneline'], data = [{0: {key: "zeroline", door: "zero"}},{1: {key: "oneline", door: "one"}},{2: {key: "twoline", door: "two"}},{3: {key: "threeline", door: "three"}}];


const res = data.filter((v, i) => keywords.indexOf(v[i].key) === -1);


console.log(res);


查看完整回答
反對 回復(fù) 2023-06-09
  • 3 回答
  • 0 關(guān)注
  • 277 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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