获取当前URL上hash参数
如果URL Hash中存在两个同名的参数,默认返回第一个匹配的参数 返回结果会使用decodeURIComponent进行解码
decodeURIComponent
传入currentKey参数
currentKey
import { url } from 'onex-utils'; const { getUrlHash } = url; console.log(getUrlHash('bizCode'));
不传入currentKey参数
import { url } from 'onex-utils'; const { getUrlHash } = url; const hashParams = getUrlHash(); console.log(hashParams);
获取当前URL上hash参数
如果URL Hash中存在两个同名的参数,默认返回第一个匹配的参数 返回结果会使用
decodeURIComponent
进行解码传入
currentKey
参数不传入
currentKey
参数