当我提交这样一个简单的表单并附上文件时:
<form enctype="multipart/form-data" action="http://localhost:3000/upload?upload_progress_id=12344" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Choose a file to upload: <input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>
它如何在内部发送文件?文件是否作为HTTP主体的一部分作为数据发送?在这个请求的标头中,我没有看到任何与文件名相关的内容。
我只是想在发送文件时了解HTTP的内部工作原理。