react url传参持续化(刷新页面参数不消失)

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)

你可能感兴趣的:(前端,react.js,路由)