我使用<input type="file"/>
上传了一个文件,并使用chrome devtools检查了http request
。
我可以看到文件名和大小,但不能看到文件的内容。
如何传输文件内容?
不是http
吗?
答案 0 :(得分:0)
algorithm is described in the HTML 5 spec。
简而言之,HTTP请求正文将包含由边界标记和相关元数据分隔的文件的编码内容。
Chrome的网络标签doesn't display the file content for performance reasons。