How to use 'formdata append multiple files' in JavaScript

Every line of 'formdata append multiple files' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
295file(file, name = '') {
296 const formData = new FormData();
297 formData.append('file', file);
298
299 this.header('Content-Type', 'multipart/form-data');
300 this.header('Content-Disposition', 'attachment; filename=' + name);
301
302 this.formData = formData;
303
304 return this;
305}

Related snippets