[REACTJS] 반응 네이티브의 파싱 된 개체 배열에서 이미지 렌더링
REACTJS반응 네이티브의 파싱 된 개체 배열에서 이미지 렌더링
해결법
-
1.당신은 이렇게 할 수 있습니다
당신은 이렇게 할 수 있습니다
Details = [ { type: "Party", image: require("../../../images/icons/photographer/Party.png") }, { type: "Wedding", image: require("../../../images/icons/photographer/Wedding.png") }, { type: "Architecture", image: require("../../../images/icons/photographer/Arhitecture.png") }, { type: "Christening", image: require("../../../images/icons/photographer/Christening.png") } ]; render() { let renderPhotoTypes = () => { let type = []; this.Details.map( ( item )=> { type.push( <View style={styles.imageSelectItem} key={item.type}> <TouchableWithoutFeedback> <View> <View style={styles.imageContainer}> <Image style={styles.image} source={item.image}/> </View> <Text style={styles.text}>{item.type}</Text> </View> </TouchableWithoutFeedback> </View> ); } ); return type; };
from https://stackoverflow.com/questions/37841236/render-images-sources-from-parsed-array-of-objects-in-react-native by cc-by-sa and MIT license
'REACTJS' 카테고리의 다른 글
[REACTJS] 반응에서보기로 스크롤하십시오 (0) | 2020.11.24 |
---|---|
[REACTJS] 오류 : ENFILE : MAC에서 반응을 실행하는 동안 파일 테이블 오버플로, Scandir (0) | 2020.11.24 |
[REACTJS] 요소로 스크롤하십시오 (0) | 2020.11.23 |
[REACTJS] draft.js - 데이터베이스에서 데이터를 가져올 수 없습니다. 첨가 오류가 발생했습니다 (0) | 2020.11.23 |
[REACTJS] 모든 값 ReactJs 계산 합계 표 열에 제시 (0) | 2020.11.16 |