Simple usage of react routing (code example)

不言
Release: 2019-02-28 13:37:12
forward
2944 people have browsed it

This article brings you the simple usage of react routing (code examples), which has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

What I want is simple and crude routing

I am used to the usage of vue-router routing, but it always feels quite troublesome to use react-router again.

Then encapsulate one yourself

1. When encapsulating multi-level routing ————The file name is routerView.js
import React from 'react'; import {Switch, Redirect, Route} from 'dva/router'; export default (props)=>{ return { props.routes.map((item, index)=>{ console.log(item.path); return { if (item.children){ return  }else{ return  } }}> }) } } }
Copy after login
Copy after login
2. Define the routing list object — ——The file name is index.js
import React from 'react'; // 一级路由 import Tab from '../routes/TabPage'; import Detail from '../routes/Detail'; // 二级路由 import Rank from '../routes/RankPage'; import Search from '../routes/SearchPage' import Index from '../routes/IndexPage'; export default { routes: [{ path: '/tab', component: Tab, children: [{ path: '/tab/index', component: Index }, { path: '/tab/rank', component: Rank }, { path: '/tab/search', component: Search }] }, { path: "/detail", component: Detail }] }
Copy after login
Copy after login
3. Mount it globally

Simple usage of react routing (code example)

4. Use # in the page

Simple usage of react routing (code example)

##If you have any questions, please leave a message







# to posted on Koala Reading Front-End Team

Posted 21 hours ago

Simple and crude react routing

  • react.js

  • javascript

36 Reading It takes 6 minutes to read



##

What I want is simple and crude routingI am used to the usage of vue-router routing, and it always feels quite troublesome to use react-router again.Then encapsulate one yourself1. When encapsulating multi-level routing ————The file name is routerView.js

import React from 'react'; import {Switch, Redirect, Route} from 'dva/router'; export default (props)=>{ return { props.routes.map((item, index)=>{ console.log(item.path); return { if (item.children){ return  }else{ return  } }}> }) } } }
Copy after login
Copy after login
2. Define the routing list object — ——The file name is index.js 3. Mount globally

##4 .Use

on the page. If you have any questions, you can leave a message to communicate.

Simple usage of react routing (code example)

Simple usage of react routing (code example)

report
  • Simple usage of react routing (code example)

You may be interested



##Comment

Default sorting Sort by time



Loading...

Show more comments


The above is the detailed content of Simple usage of react routing (code example). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!