react 怎么实现页面跳转不记录-LMLPHP

本教程操作环境:Windows10系统、react18.0.0版、Dell G3电脑。

react 怎么实现页面跳转不记录?

React-router:页面跳转并清除当前页的历史记录

有如下情况:

用户打开激活链接;用户完成激活过程后,系统会将其移至另一个页面。

我不想将激活链接保留在浏览器的历史记录中,因为当用户返回时,他们将再次进入激活步骤。

可以通过replace进行页面跳转

this.props.history.replace("/home");
登录后复制

相关介绍:

this.props.history.replace()该方法中的参数为replace属性为true的Link组件的to属性,也可以传递state;

 this.props.history.replace(`/Page2/Div1`)
 //等同于
 <Link replace to=`/Page2/Div1`></Link>
 this.props.history.replace(`/Page2/Div1`,{ id: 1, message: "你好啊" })
 //等同于
 <Link replace to={{pathname:`/Page2/Div1`,state:{id: 1, message: "你好啊"}}></Link>
登录后复制

推荐学习:《react视频教程

以上就是react 怎么实现页面跳转不记录的详细内容,更多请关注Work网其它相关文章!

09-17 04:38