복붙노트

[REACTJS] 루프 물체 배열 및 다른 개체에 해당

REACTJS

루프 물체 배열 및 다른 개체에 해당

해결법


  1. 1.여기에) (당신이 Array.prototype.map를 사용하여 동전 이름의 배열을 얻을 것 방법 CONST 도착 = [{ "CoinInfo": { "ID": "1182", "이름": "BTC" "하면 FullName": "비트 코인" "내부": "BTC" "이미지 URL": "/media/19633/btc.png" "URL": "/ 동전 / BTC / 개요" } }, { "CoinInfo": { "ID": "7605", "이름": "ETH" "하면 FullName": "에테 리움" "내부": "ETH" "이미지 URL": "/media/20646/eth_logo.png" "URL": "/ 동전 / ETH / 개요" } } ]; CONST coinNames arr.map = (X => x.CoinInfo.FullName); CONSOLE.LOG (coinNames);

    여기에) (당신이 Array.prototype.map를 사용하여 동전 이름의 배열을 얻을 것 방법 CONST 도착 = [{ "CoinInfo": { "ID": "1182", "이름": "BTC" "하면 FullName": "비트 코인" "내부": "BTC" "이미지 URL": "/media/19633/btc.png" "URL": "/ 동전 / BTC / 개요" } }, { "CoinInfo": { "ID": "7605", "이름": "ETH" "하면 FullName": "에테 리움" "내부": "ETH" "이미지 URL": "/media/20646/eth_logo.png" "URL": "/ 동전 / ETH / 개요" } } ]; CONST coinNames arr.map = (X => x.CoinInfo.FullName); CONSOLE.LOG (coinNames);


  2. 2.이런 식으로 작업을 수행

    이런 식으로 작업을 수행

    import React from 'react'
    
    export default class YourComponent extends React.Component {
        render() {
            let arr = [
                {
                    "CoinInfo": {
                        "Id": "1182",
                        "Name": "BTC",
                        "FullName": "Bitcoin",
                        "Internal": "BTC",
                        "ImageUrl": "/media/19633/btc.png",
                        "Url": "/coins/btc/overview"
                    }
                },
                {
                    "CoinInfo": {
                        "Id": "7605",
                        "Name": "ETH",
                        "FullName": "Ethereum",
                        "Internal": "ETH",
                        "ImageUrl": "/media/20646/eth_logo.png",
                        "Url": "/coins/eth/overview"
                    }
                }
            ]
    
            let newArr = arr.map((data) => {
                return data.CoinInfo.FullName
            })
            console.log('new array', newArr);
            return (
                <div>
                </div>
            )
        }
    }
    
  3. from https://stackoverflow.com/questions/53979774/loop-object-that-in-the-array-and-in-the-another-object by cc-by-sa and MIT license