我的代码中包含以下路线。
在以下路线上,通过选择创建联系人,它将重定向到route2。如果再次从侧面菜单中单击路由1选项,则不会重定向到路由1页面,一旦URL更改,我仍然保留在创建页面中。有人可以帮我吗?
路线1: / dashboard / settings / templates
路线2: / dashboard / settings / templates / contact / create
<Route
exact
path="/dashboard/settings/templates"
render={(props) => <Templates {...props} />}
/>
<Route
exact
path="/dashboard/settings/templates/:role/:template"
render={(props) => <Templates mode="edit" {...props} />}
/>
谢谢, Promod S