使用application / x-www-form-urlencoded上传文件

时间:2015-02-18 03:36:28

标签: html

使用application / x-www-form-urlencoded时是否可以上传文件? 我正在关注HTML代码,但它只是上传/发送表单字段而不是真正上传文件。

<form name="form1" method="post" action="api/upload">
    <div>
        <label for="caption">Image Caption</label>
        <input name="caption" type="text" />
    </div>
    <div>
        <label for="image1">Image File</label>
        <input name="image1" type="file" />
    </div>
    <div>
        <input type="submit" value="Submit" />
    </div>
</form>

1 个答案:

答案 0 :(得分:2)

According to W3,在提交中包含文件时,应使用multipart/form-data