Options
All
  • Public
  • Public/Protected
  • All
Menu

Module url/getUrlHash

Index

Functions

Functions

getUrlHash

0.0.35 provide
  • getUrlHash(): {} | {}
  • getUrlHash(currentKey: string): string | undefined
  • 获取当前URL上hash参数

    remarks

    如果URL Hash中存在两个同名的参数,默认返回第一个匹配的参数 返回结果会使用decodeURIComponent进行解码

    example

    传入currentKey参数

    import { url } from 'onex-utils';
    const { getUrlHash } = url;
    console.log(getUrlHash('bizCode'));
    
    example

    不传入currentKey参数

    import { url } from 'onex-utils';
    const { getUrlHash } = url;
    const hashParams = getUrlHash();
    console.log(hashParams);
    

    Returns {} | {}

  • Parameters

    • currentKey: string

    Returns string | undefined