본문 바로가기

반응형

react

[React] confirm - 삭제할 때 확인하기 데이터를 삭제할 때, '삭제하시겠습니까?'라고 물어보고 삭제를 하는 웹사이트가 많다. 중요한 데이터일수록 더욱 이 confirm 과정은 중요하다. 이럴 때에는 window.confirm()을 사용하면 된다. 예시 사용은 아래와 같다. const onDeleteClick = () => { if(window.confirm("삭제하시겠습니까?")) { dispatch(delete(data.id)); alert("삭제완료"); } else { alert("취소"); } }; 참고 : 예시에서 나는 dispatch(delete(data.id));를 사용했는데 저 자리에 본인의 코드에 따라 삭제 수행 함수를 넣어주면 된다. 더보기
[React] /bin/sh: react-scripts: command not found 에러 해결 (+ react-scripts란?) 방법 1. 터미널에서 react-scripts 라이브러리 전역 설치 yarn add global react-scripts 방법 2. package.json이 있는 디렉토리에서 react-scripts 라이브러리 설치 yarn add react-scripts npm install -save react-scripts 참고 : react-scripts란? react-scripts가 뭔지 알려면 create-react-app이 뭔지를 알아야 한다. create-react-app은 귀찮은 설정들을 대신해준다. 구성하지 않고 프로젝트를 시작할 수 있어서 react 프로젝트를 쉽게 시작할 수 있게 해주는 모듈이다. react-scripts는 이러한 create-react-app 스타터팩의 스크립트 세트이다. 즉, c.. 더보기
[React] Module not found: Can't resolve 에러 해결 방법 1. package-lock.json, node_modules 삭제 rm -r node_modules rm package-lock.json 2. 모듈 재설치 npm install 3. 실행 npm start 더보기

반응형