Sto ancora cercando di avvolgerci la testa.
Posso fare in modo che l'utente selezioni il file (o anche più) con l'input del file:
<form>
<div>
<label>Select file to upload</label>
<input type="file">
</div>
<button type="submit">Convert</button>
</form>
E posso seguire l' submit
evento usando <fill in your event handler here>
. Ma una volta fatto, come posso inviare il file usando fetch
?
fetch('/files', {
method: 'post',
// what goes here? What is the "body" for this? content-type header?
}).then(/* whatever */);
Content-Type: multipart/form-data
nell'intestazione della richiesta