,可以通过使用<Redirect>
组件或history
对象来实现。
<Redirect>
组件:react-router-dom
库。Redirect
组件:import { Redirect } from 'react-router-dom';
<Redirect>
组件,并设置to
属性为你想要重定向的路径。例如:<Redirect to="/dashboard" />
history
对象:react-router-dom
库。useHistory
钩子:import { useHistory } from 'react-router-dom';
useHistory
钩子获取history
对象:const history = useHistory();
history.push()
方法,并传入你想要重定向的路径作为参数。例如:history.push('/dashboard');
以上两种方法都可以实现操作后的重定向,具体使用哪种方法取决于你的项目需求和个人偏好。
关于react-router-dom V5.+的更多信息和使用方法,你可以参考腾讯云的相关文档和示例代码:
领取专属 10元无门槛券
手把手带您无忧上云