、
自定义路由从后端 获取的 ,页面上已经显示出来了,但内容不出来,,,必须要在 routes.js 配置路径才会显示,,,能不能不配置 从后台动态获取??
动态路由可以这么设计呀
<BrowserRouter>
<Switch>
{/* 路由 */}
<Route exact path='/' component={Home} />
<Route path='/article/:id' component={Article} />
<Route path='/404' component={FzF} />
<Redirect to='/404' />
</Switch>
</BrowserRouter>
对应的组件可以这么写去链接
<Link to={{ pathname: /article/${this.state.id}
}} >
<p className={style.title}>{this.state.title}</p>
</Link>
至于id,是你从后端获取的值