일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- memory
- 리액트
- react router
- 리액트라우터api
- variable
- useParams
- 해석
- 리액트라우터돔
- 설명
- API
- 리액트라우터 공식문서
- 자바스크립트
- 메모리
- API문서
- react router api
- JavaScript
- 공식문서
- 리액트라우터
- react-router-dom
- 리액트라우터api문서
- react
- 변수
- useLocation
- react-router-dom api
- 리액트 라우터 api
- Today
- Total
목록react (5)
같이 성장하는 프로그래밍
useParams useParams returns an object of key/value pairs of URL parameters. Use it to access match.params of the current . useParams useParams는 URL 인자들의 key/value(키/값) 짝들의 객체를 반환한다. 현재 의 match.params에 접근하기 위해 사용한다. 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 import React from "react"; import ReactDOM from "react-dom"; import { BrowserRouter as Router, Switch, Route, u..
useLocation The useLocation hook returns the location object that represents the current URL. You can think about it like a useState that returns a new location whenever the URL changes. This could be really useful e.g. in a situation where you would like to trigger a new “page view” event using your web analytics tool whenever a new page loads, as in the following example: useLocation useLocati..
history The term “history” and "history object" in this documentation refers to the history package, which is one of only 2 major dependencies of React Router (besides React itself), and which provides several different implementations for managing session history in JavaScript in various environments. The following terms are also used: “browser history” - A DOM-specific implementation, useful i..
Hooks React Router ships with a few hooks that let you access the state of the router and perform navigation from inside your components. Please note: You need to be using React >= 16.8 in order to use any of these hooks! useHistroy useLocation useParams useRouteMatch Hooks 리액트 라우터는 당신의 컴포넌트들 안에서부터 라우터의 state에 접근하거나 화면이동(navigation)을 수행하게 해주는 조금의 hooks를 가지고 있습니다. 노트 : 이 hooks들 중 어느것이든 사용하기 위해서는 ..
안녕하세요. 오늘부터 비주기적으로 react-router-dom 공식문서 중 API 부분을 해석 및 설명에 대해 글을 올려보려고 합니다. 글 형식은 공식문서를 가져와서 의,직역을 한 후, 개인의 설명을 붙여서 블로그를 작성해 나갈 예정입니다! 영어나 프로그래밍을 그리 잘하지는 못하여서 틀린 지식이거나 보완했으면 하는 부분이 있다면 얼마든지 댓글에 남겨주시면 감사하겠습니다! 조금이라도 도움이 되었으면 좋겠습니다 ㅎㅎ 그럼 다음 글 부터 하나하나 시작해 나가겠습니다. 잘 부탁드리겠습니다