-
-
Save z2015/228ce98a47ca288332edc522ac1c5aeb to your computer and use it in GitHub Desktop.
Add blob filt to FormData
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
formData.append(name, value); | |
formData.append(name, value, filename); | |
//https://developer.mozilla.org/en-US/docs/Web/API/FormData/append | |
//The filename reported to the server (a USVString), when a Blob or File is passed as the second parameter. The default filename for Blob objects is "blob". The default filename for File objects is the file's filename. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment