如果 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' }
Licensed under the MIT License, Copyright © 2018-present hnzycfc.com, https://www.hnzycfc.com/
See LICENSE for more information.