react-router4 嵌套路由的使用方法

前端之家收集整理的这篇文章主要介绍了react-router4 嵌套路由的使用方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

react我自己还在摸索学习中,今天正好学习一下react-router4 嵌套路由的使用方法,顺便留着笔记

先直接贴代码

const hashHistory = createBrowserHistory();
const NoMatch = ({ location }) => (

无法匹配 {location.pathname}

) ReactDOM.render((
//总会加载这个组件,并且下面 swicth 里面的组件会在它里面 render
),document.getElementById('root'));

参考文章https://stackoverflow.com/questions/42095600/nested-routes-in-v4

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/37620.html

猜你在找的JavaScript相关文章