• 把查询字符串解析为键值对集合。

    Parameters

    • str: string

      查询字符串。

    • Optional options: Readonly<IQSParseOptions>

      解析选项。

      Optional

    Returns {
        [key: string]: string | string[];
    }

    键值对集合。

    • [key: string]: string | string[]

    Example

    import { parse } from '@just4/querystring';
    parse('id=0&str=hello'); // { id: '0', str: 'hello' }
    parse('id=0&id=1'); // { id: ['0', '1'] }

Generated using TypeDoc