共计 219 个字符,预计需要花费 1 分钟才能阅读完成。
react web 项目,页面刷新 url 的参数不消失
1、安装 query-string
npm i -save-dev query-string
2、点击按钮跳转页面:
this.props.history.push({
pathname: ‘/g6’,
search:`?id=${id}&name=${name}`
});
3、g6 页面获取参数:
let {id,name} = querystring.parse(this.props.location.search)
正文完