with open(filename, 'wb') as f: OSError: [Errno 22] Invalid argument: 'polyfill.min.js?features=String.prototype.replaceAll'
时间: 2024-06-04 11:12:48 浏览: 170
OSError: [Errno 22] Invalid argument问题解决
This error message suggests that there is an issue with the filename that you are trying to open. The filename appears to be 'polyfill.min.js?features=String.prototype.replaceAll', which contains a question mark and may not be a valid filename on your operating system.
You can try renaming the file to remove any special characters or symbols and ensure that the filename is valid for your operating system. Alternatively, you can try specifying the full path to the file when opening it to ensure that it can be found and opened correctly.
阅读全文