반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 가상면접으로대규모시스템
- git commit 협업
- awss3
- 리팩토링2판4장
- 가상면접2장
- 헤드퍼스트전략패턴
- file not found Error
- 시스템설계면접
- formik submitting not working
- cypressBDD
- formik react-query submitting not working
- git squash
- 전략패턴
- 시스템설계방법
- gitsquash
- Git commit 합치기
- cypress React
- git commit merge
- 시스템설계
- 시스템설계면접예시
- react
- 테스트코드책
- 리팩터링2판테스트
- react-ga
- FirebaseAnalytics
- s3이미지다운로드됨
- 가상면접3장
- 디자인패턴
- 시스템설계면접팁
- 리액트구글애널리틱스
Archives
- Today
- Total
목록전체 글 (274)
mingg IT
[React] 뒤로가기, 홈으로 가기 History 이용
뒤로 갈때 this.props.history.goBack(); 홈으로 갈때 this.props.history.push("/"); 를 사용한다. 간단한 예제로는 import { Component } from 'react'; class HistorySample extends Component { handleGoBack = () => { this.props.history.goBack(); }; handleGoHome = () => { this.props.history.push('/'); }; componentDivMount() { this.unblock = this.props.history.block('정말 떠나실 건가요?'); } ccomponentWillUnmount() { if (this.unblock)..
FrontEnd
2020. 12. 7. 19:57