본문 바로가기
개발

react-router path 가져오기

by 제이콥 2020. 2. 29.

browerHistory를 활용하여 현재주소 가져오기

path 뒤에 #,? 정보도 가져옴

import { browserHistory } from 'react-router';

...

componentDidMount() {
  const location = browserHistory.getCurrentLocation();
  console.log(location.hash);
}

 

'개발' 카테고리의 다른 글

firebase react setup 및 firestore 데이터 가져오기  (0) 2020.03.20
깃헙 sub repo 관련 명령어  (0) 2020.03.06
javascript delay function  (0) 2020.02.14
mobx-react 실전, 요약  (0) 2020.02.12
[react-native] base64 이미지 전송  (0) 2020.01.25

댓글