일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- useParams
- JavaScript
- react
- 자바스크립트
- API문서
- 리액트 라우터 api
- useLocation
- API
- 설명
- 변수
- react router api
- 리액트라우터api문서
- react-router-dom
- 해석
- 공식문서
- 리액트
- react router
- 메모리
- 리액트라우터
- memory
- react-router-dom api
- variable
- 리액트라우터 공식문서
- 리액트라우터돔
- 리액트라우터api
- Today
- Total
목록전체 글 (6)
같이 성장하는 프로그래밍
안녕하세요. 일이 너무 바쁘고 해외에서 살고 있다가 귀국하느라 (귀찮음의 변명) 수개월만에 새로운 글을 씁니다. 자바스크립트 변수 part 1 에서는 자바스크립트 엔진 속에서 메모리에는 어떻게 해서 변수가 생성되고 변경되는가에 대한 기본적인 개념들을 설명하고자 합니다. 1. 변수 생성 과정 2. 해당 변수가 가지고 있는 값을 찾아가는 과정 3. 변수의 값을 변경하는 과정 1. 변수 생성 과정 그럼 먼저 자바스크립트의 변수 생성 과정을 알아봅시다. const a = 10; 'a' 변수 선언과 동시 할당 a라는 식별자로 변수를 생성합니다. 변수(Variable)라는 것은 식별자(Identifier)와 값(Value)으로 이루어져있습니다. 식별자는 변수를 지칭하는 이름표라고 생각하시면 됩니다. 에서는 식별자가..
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 부분을 해석 및 설명에 대해 글을 올려보려고 합니다. 글 형식은 공식문서를 가져와서 의,직역을 한 후, 개인의 설명을 붙여서 블로그를 작성해 나갈 예정입니다! 영어나 프로그래밍을 그리 잘하지는 못하여서 틀린 지식이거나 보완했으면 하는 부분이 있다면 얼마든지 댓글에 남겨주시면 감사하겠습니다! 조금이라도 도움이 되었으면 좋겠습니다 ㅎㅎ 그럼 다음 글 부터 하나하나 시작해 나가겠습니다. 잘 부탁드리겠습니다