1.0.1 • Published 2 years ago

@hnzycfcfed/get-url-params v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

get-url-params

npm npm GitHub stars

提示

如果 url 参数存在多个 key 相同而 value 不同时,会强制使用第一个参数

安装


yarn:

yarn add @hnzycfcfed/get-url-params

npm:

npm i --save @hnzycfcfed/get-url-params

演示


import getUrlParams from '@hnzycfcfed/get-url-params';

console.log(getUrlParams());          // 获取当前页面 url 参数 location.href = 'https://www.buttercatann.com/?id=123'
console.log(getUrlParams('https://www.buttercatann.com/?channel=podcast&id=1273733713'));      // 获取 url 字符串参数

输出

{ id: 123 }

{ channel: 'zyxf_jg_pyq_5', id: '1273733713' }

License

Licensed under the MIT License, Copyright © 2018-present hnzycfc.com, https://www.hnzycfc.com/

See LICENSE for more information.