# 获取指定链接的参数
可返回对象或指定的属性值
/**
* 获取指定链接的参数,默认当前页面链接
*/
export const getUrlParamBySearch = ({ name, path, decode = true } = {}) => {
const _path = path
? path
: location?.href || '';
// 分组捕获 两个子组
const reg = /([^?&=]+)=([^&]+)/g;
let params = {};
_path.replace(reg, (_, k, v) => {
params[k] = decode ? decodeURIComponent(v) : v;
});
return name ? Reflect.get(params, name) : params;
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16