因此,我正在嘗試使用一些現有數據來創建對象列表的列表。我擁有的數據包含2個值,即``a''和``b'',其中許多相似的``a''值在數據集中重複多次。 我想做的是將數據轉換為以下格式:對於任何“ a”值,該列表將在一個位置包含所有與“ a”值相對應的“ b”值。 數據集為: const tempData = [ {a:1557637200025,b:“ aaaa”}, {a:1557637200025,b:“ bbbb”}, {a:1557637200025,b:“ cccc”}, {a:1557637200025,b:“ dddd”}, {a:1557637200025,b:“ eeee”}, {a:1557637200025,b:“ ffff”}, {a:1557637200025,b:“ gggg”}, {a:1555563600017,b:“ hhhh”}, {a:1555563600017,b:“ iiii”}, {a:1555563600017,b:“ jjjj”}, {a:1555563600017,b:“ kkkk”}, {a:1555563600017,b:“ llll”}, {a:1555563600017,b:“ mmmm”}, {a:1555563600017,b:“ nnnn”}, {a:1555563600017,b:“ oooo”}, {a:1555563600017,b:“ pppp”}, {a:1555563600017,b:“ qqqq”}, {a:1555563600017,b:“ rrrr”}, {a:1555563600017,b:“ ssss”}}, {a:1555563600017,b:“ tttt”}, {a:1555563600017,b:“ uuuu”}, {a:1557982800028,b:“ vvvv”}, ] 我希望它看起來像這樣: const newTempData = [ { a:1557637200025,b:[ “ aaaa”, “ bbbb”, ... ]}, { a:1555563600017,b:[ “啊……”, “ iiii”, ]}, ... ] 我已經嘗試過基本嵌套的for循環,但是我無法在任何地方實現我想要的東西。然後再次。 var newTempData = []; for(讓tempData中的row1){ console.log(row1); var some = []; var row2 = Number(row1)+1; var x = tempData [row1] .a; for(tempData中的第2行){ var y = tempData [row2] .a; var instance = tempData [row2] .b; if(x === y){ some.push({ins:instance}); } } newTempData.push({a:x,b:some}); } console.log(newTempData); 我得到的輸出是這個。 0:{a:1557637200025,b:Array(7)} 1:{a:1557637200025,b:Array(7)} 2:{a:1557637200025,b:Array(7)} 3:{a:1557637200025,b:Array(7)} 4:{a:1557637200025,b:Array(7)} 5:{a:1557637200025,b:Array(7)} 6:{a:1557637200025,b:Array(7)} 7:{a:1555563600017,b:Array(14)} 8:{a:1555563600017,b:Array(14)} 9:{a:1555563600017,b:Array(14)} 10:{a:1555563600017,b:Array(14)} 11:{a:1555563600017,b:Array(14)} 12:{a:1555563600017,b:Array(14)} 13:{a:1555563600017,b:Array(14)} 14:{a:1555563600017,b:Array(14)} 15:{a:1555563600017,b:Array(14)} 16:{a:1555563600017,b:Array(14)} 17:{a:1555563600017,b:Array(14)} 18:{a:1555563600017,b:Array(14)} 19:{a:1555563600017,b:Array(14)} 20:{a:1555563600017,b:Array(14)} 21:{a:1558972800028,b:Array(1)} 我只是想獲得所需的數據而無需重複。現在,我能夠獲取數據,但是對於每個匹配的'a'值都將重複該數據。我想知道更好的方法,而不是業餘的方法。謝謝。
2021-01-31 08:16:36
嘗試減少。我已經註釋掉b是否已經在數組中的檢查,這取決於您是否要重複b值。 const tempData = [ {a:1557637200025,b:“ aaaa”}, {a:1557637200025,b:“ bbbb”}, {a:1557637200025,b:“ cccc”}, {a:1557637200025,b:“ dddd”}, {a:1557637200025,b:“ eeee”}, {a:1557637200025,b:“ ffff”}, {a:1557637200025,b:“ gggg”}, {a:1555563600017,b:“ hhhh”}, {a:1555563600017,b:“ iiii”}, {a:1555563600017,b:“ jjjj”}, {a:1555563600017,b:“ kkkk”}, {a:1555563600017,b:“ llll”}, {a:1555563600017,b:“ mmmm”}, {a:1555563600017,b:“ nnnn”}, {a:1555563600017,b:“ oooo”}, {a:1555563600017,b:“ pppp”}, {a:1555563600017,b:“ qqqq”}, {a:1555563600017,b:“ rrrr”}, {a:1555563600017,b:“ ssss”}, {a:1555563600017,b:“ tttt”}, {a:1555563600017,b:“ uuuu”}, {a:1557982800028,b:“ vvvv”} ]; const result = tempData.reduce((acc,{a,b})=> { const element = acc.find(el => el.a === a); //如果元素存在 如果(element / * &&!element.b.includes(b)* /){ element.b.push(b); 返回acc; } / * else if(element){return acc; } * / acc.push({a,b:[b]}); 返回acc; },[]); | 如果您關心性能,則可以使用Map來代替使用數組的.find(): 函數add(map,{a,b}){ 如果(!map.has(a)){ map.set(a,{a:a,b:[]}); } map.get(a).b.push(b); 返回地圖 } const result = Array.from(tempData.reduce(add,new Map())。values()); 編輯:甚至更好,使用@Vishal Sharma的答案中的對象,其開銷比地圖少。 | 不必每次都運行.find,而是可以創建一個對象{}作為reduce的一部分,以避免每次都查找元素的麻煩,以後再使用Object.values const result = Object.values(tempData.reduce((acc,{a,b})=> { 如果(acc [a]){ acc [a] .b.push(b) }其他{ acc [a] = {a,b:[b]} } 返回acc },{})) | 你的答案 StackExchange.ifUsing(“ editor”,function(){ StackExchange.using(“ externalEditor”,function(){ StackExchange.using(“ snippets”,function(){ StackExchange.snippets.init(); }); }); },“代碼段”); StackExchange.ready(function(){ var channelOptions = { 標籤:“” .split(“”), id:“ 1” }; initTagRenderer(“”。split(“”),“” .split(“”),channelOptions); StackExchange.using(“ externalEditor”,function(){ //如果啟用了摘要,則必須在摘要後觸發編輯器 如果(StackExchange.settings.snippets.snippetsEnabled){ StackExchange.using(“ snippets”,function(){ createEditor(); }); } 其他{ createEditor(); } }); 函數createEditor(){ StackExchange.prepareEditor({ useStacksEditor:否, heartbeatType:“答案”, autoActivateHeartbeat:否, convertImagesToLinks:是, noModals:是的, showLowRepImageUploadWarning:是的, 聲望:ToPostImages:10, bindNavPrevention:是的, 後綴:“”, imageUploader:{ brandingHtml:“採用\ u003ca href = \“ https://imgur.com/ \” \ u003e \ u003csvg class = \“ svg-icon \” width = \“ 50 \” height = \“ 18 \” viewBox = \“ 0 0 50 18 \” fill = \“ none \” xmlns = \“ http://www.w3.org/2000/svg \” \ u003e \ u003cpath d = \“ M46.1709 9.17788C46.1709 8.26454 46.2665 7.94324 47.1084 7.58816C47.4091 7.46349 47.7169 7.36433 48.0099 7.26993C48.9099 6.97997 49.672 6.73443 49.672 5.93063C49.672 5.22043 48.9832 4.61182 48.1414 4.61182C47.4335 4.61182 46.7256 4.91628 46.0943 5.50789C45.74.6 4.313.6412 4.313.6662 43.1481 6.59048V11.9512C43.1481 13.2535 43.6264 13.8962 44.6595 13.8962C45.6924 13.8962 46.1709 13.2535 46.1709 11.9512V9.17788Z \“ / \ u003e \ u003cpath d = \” M32.492 10.1419C32.492 12.6954 34.1182 14.048437.0451 14.0484 41.5985 12.6954 41.5985 10.1419V6.59049C41.5985 5.28821 41.1394 4.66232 40.1061 4.66232C39.0732 4.66232 38.5948 5.28821 38.5948 6.59049V9.60062C38.5948 10.8521 38.2696 11.5455 37.0451 11.5455C35.8209 11.5455 35.4954 10.8 521 35.4954 9.60062V6.59049C35.4954 5.28821 35.0173 4.66232 34.0034 4.66232C32.9703 4.66232 32.492 5.28821 32.492 6.59049V10.1419Z \“ / \ u003e \ u003cpath fill-rule = \” evenodd \“ clip-rule = \” evenodd \“ d = \“ M25.6622 17.6335C27.8049 17.6335 29.3739 16.9402 30.2537 15.6379C30.8468 14.7755 30.9615 13.5579 30.9615 11.9512V6.59049C30.9615 5.28821 30.4833 4.66231 29.4502 4.66231C28.9913 4.66231 28.4555 4.94978 28.1109 5.50789C6.723 4.56087 .1369 4.56087 21.0134 6.57349 21.0134 9.27932C21.0134 11.9852 23.003 13.913 25.3754 13.913C26.5612 13.913 27.4607 13.4902 28.1109 12.6616C28.1109 12.7229 28.1161 12.7799 28.121 12.8346C28.1256 12.8854 28.1301 12.9342 28.1301 12.983C28.14.8349 15.2321 24.1352 14.9821 23.5661 14.7787C23.176 14.6393 22.8472 14.5218 22.5437 14.5218C21.7977 14.5218 21.2429 15.0123 21.2429 15.6887C21.2429 16.7375 22.9072 17.6335 25.6622 17.6335ZM24.1317 9.27932C24.1317 7.94324 24.9928 7.09766 26.1024 27.2119 7.09766 28.0918 7.94324 28.0918 9.27932C28.0918 10.6321 27.2311 11.5116 26.1024 11.5116C24.9737 11.5116 24.131710.6491 24.1317 9.27932Z / \ u003e \ u003cpath d = M16.8045 11.9512C16.8045 13.2535 17.2637 13.8962 18.2965 13.8962C19.3298 13.8962 19.8079 13.2535 19.8079 11.9512V8.12928C19.802879 5.82966 18.4812V8.12928C19.802879.829 5.82966 18.48.48.12928C19.802879 5.82966 18.48.48.12928C19.802879 5.82936 18.48.48.12928C19.802879 5.82966 18.4812V8.12928C19.802879..4.98375 13.3609 5.88013C12.653 5.05154 11.6581 4.62866 10.3573 4.62866C9.13.1235 0232 7.58817 8.44431 6.91179 9.53458 6.91179C10。.4027 6.91179 16.8045 7.58817 16.8045 8.94108V11.9512Z \“ / \ u003e \ u003cpath d = \” M3.31675 6.59049C3.31675 5.28821 2.83866 4.66232 1.82471 4.66232C0.791758 4.66221 0.35354 4 6.59049V11.9512C0.313354 13.2535 0.791758 13.8962 1.82471 13.8962C2.85798 13.8962 3.31675 13.2535 3.31675 11.9512V6.59049Z \“ / \ u003e \ u003cpath d = \” M1.87209 0.400291C0.846151。1.87209 3.57676C2.90056 3.57676 3.7234 3.7234 1.98861C3.7234 1.1159 2.90056 0.400291 1.87209 0.400291Z \“ fill = \”#1BB76E \“ / \ u003e \ u003c / svg \ u003e \ u003c / a \ u003e contentPolicyHtml:“根據\ u003ca href = \許可的用戶貢獻” https://stackoverflow.com/help/licensing \“ \ u003ecc by-sa \ u003c / a \ u003e \ u003ca href = \” https://stackoverflow.com /法律/內容政策\“ \ u003e(內容政策)\ u003c / a \ u003e”, allowUrls:是 }, onDemand:是的, dispatchSelector:“。discard-answer” ,立即ShowMarkdownHelp:true,enableTables:true,enableSnippets:true }); } }); 感謝您為Stack Overflow提供答案! 請務必回答問題。提供詳細信息並分享您的研究! 但是要避免... 尋求幫助,澄清或回答其他答案。 根據意見發表聲明;用參考或個人經驗來備份它們。 要了解更多信息,請參見我們撰寫出色答案的提示。 草稿已保存 草稿丟棄 註冊或登錄 StackExchange.ready(function(){ StackExchange.helpers.onClickDraftSave('#login-link'); }); 使用Google註冊 使用Facebook註冊 使用電子郵件和密碼註冊 提交 以訪客身份發布 名稱 電子郵件 必需,但從未顯示 StackExchange.ready( 函數(){ StackExchange.openid.initPostLogin('.New-post-login','https%3a%2f%2fstackoverflow.com%2fquestions%2f57427309%2如何從以下位置創建對象列表a-object-of-objects%23new-answer','question_page'); } ); 以訪客身份發布 名稱 電子郵件 必需,但從未顯示 發表您的答案 丟棄 點擊“發布答案”,即表示您同意我們的服務條款,隱私政策和Cookie政策 不是您要找的答案?瀏覽標記為reactjs react-native的其他問題或提出您自己的問題。