ENCTYPE="multipart/form-data"
Because it transmits binary and the Chinese name of the file is garbled, how can I solve it?
You may have sent the wrong version, this is beyond the capabilities of css.
Encode in js and send to the background, such as: encodeURI(encodeURI(url)), and then decode it
As long as the server can receive the correct binary data, it can always be solved there
Put a hidden field on the page, use js to get the file name and store it in the hidden field, and get the file name through the hidden field in the background
Are you saying that the file name obtained in the background is wrong (garbled code)?