我从A页面带参数跳转到B页面this.props.history.push({ pathname: '/send_msg', state: { query: obj } })此时在B页面能取到this.props.location.state但是刷新B页面,this.props.location.state就变成了undefined,求解如何处理?
1 回答
翻翻过去那场雪
TA贡献2065条经验 获得超14个赞
刷新肯定会报错,因为你的参数是从前一个页面带过来的,正确的做法是用路由参数,可以放在 query 里边,这样参数保存在 url 里,就不怕刷新了
添加回答
举报
0/150
提交
取消