2024年03月31日 建站教程
问题描述:react点击链接路由跳转页面(页面链接已经发生变化),但是页面显示空白,没有报错,需手动刷新页面才显示内容!
错误写法:
this.props.history.push({ pathname:`/detail?id=${car.id}`, state:car })
正确写法:
this.props.history.push({ pathname:`/detail`, search:`?id=${car.id}`, state:car, })
本文链接:http://so.lmcjl.com/news/810/