Eu ainda estou tentando envolver minha cabeça em torno disso.
Posso fazer com que o usuário selecione o arquivo (ou até vários) com a entrada do arquivo:
<form>
<div>
<label>Select file to upload</label>
<input type="file">
</div>
<button type="submit">Convert</button>
</form>
E eu posso pegar o submit
evento usando <fill in your event handler here>
. Mas quando eu faço, como envio o arquivo 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
no cabeçalho do pedido