ฉันยังคงพยายามห่อหัวของฉันรอบ ๆ มัน
ฉันสามารถให้ผู้ใช้เลือกไฟล์ (หรือหลาย ๆ ไฟล์) ด้วยอินพุตไฟล์:
<form>
<div>
<label>Select file to upload</label>
<input type="file">
</div>
<button type="submit">Convert</button>
</form>
และผมสามารถจับเหตุการณ์ใช้submit
<fill in your event handler here>
แต่เมื่อฉันทำฉันจะส่งไฟล์โดยใช้fetch
?
fetch('/files', {
method: 'post',
// what goes here? What is the "body" for this? content-type header?
}).then(/* whatever */);
Content-Type: multipart/form-data
ในส่วนหัวของคำขอ