getAll(key: string): string[]
Parameter | Type | Description |
key | string | Key. |
Type | Description |
string[] | All values for the specified search parameter. |
import url from 'pts/url';export default function() {const params = new url.URLSearchParams('key1=value1&key2=value2');params.append('key1', 1);console.log(params.getAll('key1')); // value1,1}