Options
All
  • Public
  • Public/Protected
  • All
Menu

Module url/setUrlHash

Index

Functions

Functions

Const setUrlHash

0.0.35 provide
  • setUrlHash(key: string, value?: string): void
  • 设置url上对应的hash参数

    remarks

    当不传入key值,默认代表删除当前param

    example

    传入keyvalue

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

    传入key值,不传入value默认删除对应key值

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

    Parameters

    • key: string
    • Optional value: string

    Returns void