- React Router Quick Start Guide
- Sagar Ganatra
- 343字
- 2021-07-23 16:41:32
Introduction to React-Router
React-Router is a routing library for SPAs built with React. React-Router version 4 is a complete rewrite and embraces the React philosophy of component-based architecture.
This is from the React-Router documentation (https://reacttraining.com/react-router/)
React-Router can be used wherever React can be applied; that is, React-Router works both in the browser and in the native environment with React Native.
The library is divided into three packages:
- react-router: Common core components for DOM and Native versions
- react-router-dom: Components for use in browser and web applications
- react-router-native: Components for use in native applications built with React Native
The library provides various components that can be used to add routes dynamically to your application. The dynamic routing in React-Router v4 allows you to specify application routes as the user progresses through the application journey. Frameworks such as AngularJS and Express require you to specify the routes upfront, and this routing information is required when the application bootstraps. In fact, the earlier versions of React-Router followed the same paradigm and required the routing configuration to be available upfront.
Apart from dynamic routing and providing fluid navigation in a React application, the library includes various features that are available in traditional websites. These include the following:
- Navigating backward and forward through the application, maintaining the history, and restoring the state of the application
- Rendering appropriate page components when presented with a URL (deep-linking)
- Redirecting the user from one route to the other
- Support for rendering a 404 page when none of the routes match the URL
- Support for hash-based routes and pretty URLs with HTML5 mode
- 自己動手寫搜索引擎
- Mastering ServiceStack
- 高效微控制器C語言編程
- Android Studio Essentials
- Microsoft Dynamics 365 Extensions Cookbook
- Access 2010數據庫基礎與應用項目式教程(第3版)
- 重學Java設計模式
- 名師講壇:Spring實戰開發(Redis+SpringDataJPA+SpringMVC+SpringSecurity)
- 數據結構案例教程(C/C++版)
- Mastering openFrameworks:Creative Coding Demystified
- 0 bug:C/C++商用工程之道
- WebStorm Essentials
- 奔跑吧 Linux內核
- scikit-learn Cookbook(Second Edition)
- 寫給青少年的人工智能(Python版·微課視頻版)