react-native-url-polyfill icon indicating copy to clipboard operation
react-native-url-polyfill copied to clipboard

The size attribute of the URLSearchParams object cannot obtain the total number of parameters. No value is returned.

Open wh-hujinyun opened this issue 1 year ago • 0 comments

const searchParams = new URLSearchParams('abc=456&rn=ReactNative&abc=javascript'); console.log('size: ' + searchParams .size); The log result should be as follows:size: 3ï¼›

The actual log result is as follows:size: undefinedï¼›

wh-hujinyun avatar Jul 04 '24 11:07 wh-hujinyun