常用工具

2021-09-14  本文已影响0人  想溜了的蜗牛

获取链接上的参数值方法:

  1. 使用原生方法,旧的浏览器需要兼容
const query = new URLSearchParams(props.location.search);
console.log(query.get('hello'));

refer: here

  1. 使用 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

上一篇下一篇

猜你喜欢

热点阅读