使用umi的history.push进行路由跳转后页面空白
路由配置为
{
path: '/manage/query/table',
name: '管理表格',
component: './Manage/Query/component/queryTable',
hideInMenu:true,
},
路由跳转是点击一张图片实现跳转
<div onClick={()=>{history.push({pathname:'/manage/query/table'})}}>
<img src={table}/>
</div>
点击之后留地址栏改变,变成http://localhost:8000/manage/query/table,但是没有内容显示,一片空白,如下图所示:
请问这个问题该如何解决?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…