const [img, setImg] = useState([]); // 커버 이미지
/**이미지 onchange 함수*/
const uploadChange = (e) => {
const arr = [...img, ...e.target.files];
setImg(arr);
}
/**이미지 업로드 구현 */
const onImgUpload = async () => {
console.log(img);
};
};
<input type="file" name="img" onChange={uploadChange} multiple />
<button onClick={onImgUpload}>업로드</button>
'error > Frontend' 카테고리의 다른 글
[react] geolocation + kakakoAPI로 현재 위치 찾기 (0) | 2023.02.14 |
---|---|
[react] material-ui/core랑 material-ui/icons 설치 (0) | 2023.02.09 |
[React] antd 모달로 로그인 창 구현(antd modal signin) (0) | 2023.01.28 |
el태그로 반복문 처리할 때 오류(feat jsp 표현식) (0) | 2022.04.12 |
페이징처리를 할 때 안 넘어가는 이유(For input string:2") (0) | 2022.04.12 |