This React File Upload sample demonstrates the Uploader component supported with HTML form upload.Fill the mandatory details in a form and click the submit button.
The Uploader component works in synchronous mode using HTML form.When the end-user submits the form, the selected files are submitted to server with the name attribute of input element.
More information on the form support can be found on this documentation section.
In this example, the backend service used in the saveUrl and removeUrl endpoints for saving and removing files is intended for demonstration purposes only. The uploaded files are subjected to thorough validation, including verification of file names and the application of security checks. Therefore, this service is not recommended for production use, and the configuration of a custom backend save and remove service is advised. Additional implementation details can be found in the saveUrl and removeUrl documentation.