react-native-url-polyfill
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.
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ï¼›