美文网首页
form表单中的enctype 属性以及post请求里Conte

form表单中的enctype 属性以及post请求里Conte

作者: 综合楼 | 来源:发表于2021-07-24 18:12 被阅读0次

    enctype 属性

    enctype 属性规定在将表单数据发送到服务器之前如何对其进行编码。

    默认是对表单数据以 "application/x-www-form-urlencoded" 进行编码。这意味着在发送前对所有字符进行编码(把 "+" 转换为空格,把特殊字符转换为 ASCII 十六进制值)。

    enctype有三个属性:

    描述
    application/x-www-form-urlencoded 在发送前对所有字符进行编码(默认)。
    multipart/form-data 不对字符编码。当使用有文件上传控件的表单时,该值是必需的。
    text/plain 将空格转换为 "+" 符号,但不编码特殊字符。

    Content-Type方式

    请求头中有一个Content-type字段,会声明数据编码格式。

    如果form中没有指定enctype,浏览器会自动添加默认的content-type:application/x-www-form-urlencoded;charset=utf-8。

    相关文章

      网友评论

          本文标题:form表单中的enctype 属性以及post请求里Conte

          本文链接:https://www.haomeiwen.com/subject/ncsymltx.html