logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

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

import { useHistory } from 'react-router-dom';const history = useHistory();history.push({pathname: '/details',state: {name: name,id: id,},});在history中使用state确实可以传参数,在进入页面时可以正常显示,但是在刷新页面后state里面的数据会清空,

#react.js#前端
到底了