[React] React Router: Router, Route, and Link

Posted Answer1215

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[React] React Router: Router, Route, and Link相关的知识,希望对你有一定的参考价值。

In this lesson we‘ll take our first look at the most common components available to us in react-router; Router, Route, and Link.

 

import React from ‘react‘;
import {hashHistory, Route, Router, Link} from ‘react-router‘;

const Home = () => <div><h1>Home</h1><Links></Links></div>;
const About = () => <div><h1>About</h1><Links></Links></div>;
const Contact = () => <div><h1>Contact</h1><Links></Links></div>;


const Links = () =>
    <nav >
        <Link to="/">Home</Link>
        <Link to="/about">About</Link>
        <Link to="/contact">Contact</Link>
    </nav>;

class App extends React.Component {
    render(){
        return(
            <Router history={hashHistory}>
                <Route path="/" component={Home}></Route>
                <Route path="/about" component={About}></Route>
                <Route path="/contact" component={Contact}></Route>
            </Router>
        );
    }
}

export default App;

 

以上是关于[React] React Router: Router, Route, and Link的主要内容,如果未能解决你的问题,请参考以下文章

React Router 4 异步渲染

React学习:react-router-dom-主要组件

尝试导入错误:“useRouteMatch”未从“react-router-dom”导出

React Router + Animation 库问题:组件在使用 react-router-dom 卸载之前不会动画

如何使用 react-router 重定向到另一条路由?

如何集成 Django 和 react-router-dom?