[REACTJS] 루프 물체 배열 및 다른 개체에 해당
REACTJS루프 물체 배열 및 다른 개체에 해당
해결법
-
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.이런 식으로 작업을 수행
이런 식으로 작업을 수행
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> ) } }
from https://stackoverflow.com/questions/53979774/loop-object-that-in-the-array-and-in-the-another-object by cc-by-sa and MIT license
'REACTJS' 카테고리의 다른 글
[REACTJS] 반응 리플릿 결합하는 좋은 방법 (0) | 2020.11.15 |
---|---|
[REACTJS] 명시 적 또는 헤더를 제거하고 반응 (0) | 2020.11.14 |
[REACTJS] Google지도 API; "CORS 헤더 '액세스 제어 - 허용 - 원산지'실종"오류 [중복] (0) | 2020.11.14 |
[REACTJS] 만들-반응-응용 프로그램을 사용할 때 왜 양식이 제출되지 않는 이유는 무엇입니까? (0) | 2020.11.14 |
[REACTJS] 함수가 실행 된 후 후크 반응 재 - 호출 (0) | 2020.11.14 |