【时快讯】react页面传值刷新后值消失怎么办

时间:2022-12-29 11:07:09       来源:PHP中文网


(资料图)

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

react页面传值刷新后值消失怎么办?

解决react路由跳转传参刷新页面后参数丢失问题

import { useHistory } from "react-router-dom";const history = useHistory(); history.push({      pathname: "/details",      state: {        name: name,        id: id,      },});
登录后复制

在history中使用state确实可以传参数,在进入页面时可以正常显示,但是在刷新页面后state里面的数据会清空,页面就无法正常显示。

import { useHistory } from "react-router-dom";const history = useHistory(); history.push({      pathname: "/details",      query: {        name: name,        id: id,      },});
登录后复制

使用query是在跳转链接中增加参数,可以在实现传参的同时刷新页面后数据不会丢失,但是如果传的参数过多链接会很长。

import { useLocation } from "react-router-dom";const location = useLocation();const name = location.query.name;const id = location.query.id;// 获取state参数的写法const name = location.state.name;const id = location.state.id;
登录后复制

这是在跳转页面获取参数的方式

(亲测有效,但是会有类型报错)

推荐学习:《react视频教程》

以上就是react页面传值刷新后值消失怎么办的详细内容,更多请关注php中文网其它相关文章!

关键词: 刷新页面 相关文章 视频教程