获取链接上的参数值方法:
- 使用原生方法,旧的浏览器需要兼容
const query = new URLSearchParams(props.location.search);
console.log(query.get('hello'));
refer: here
- 使用 query-string
npm install -save query-string // 安装
// js code
const queryString = require('query-string');
var parsed = queryString.parse(this.props.location.search); // react router 方法
console.log(parsed.param); // replace param with your own
refer: here
网友评论