Get the current value on the url
如果URL上跟了两个同名的参数,默认返回第一个匹配的参数 返回结果会使用decodeURIComponent进行解码
decodeURIComponent
import { url } from 'onex-utils'; const { getUrlParam } = url; console.log(getUrlParam('key'));
The current url parameter name
the current url parameter value with the key
Get the current value on the url
如果URL上跟了两个同名的参数,默认返回第一个匹配的参数 返回结果会使用
decodeURIComponent
进行解码