浅析application/x-www-form-urlencoded和multipart/form-data的区别

2015-01-24信息快讯网

我们知道在通过POST方式向服务器发送AJAX请求时最好要通过设置请求头来指定为application/x-www-form-urlencoded编码类型。知道通过表单上传文件时必须指定编码类型为"multipart/form-data"。那么为什么要这么设置呢

在Form元素的语法中,EncType表明提交数据的格式

用 Enctype 属性指定将数据回发到服务器时浏览器使用的编码类型。

下边是说明:

application/x-www-form-urlencoded : 窗体数据被编码为名称/值对。这是标准的编码格式。

multipart/form-data : 窗体数据被编码为一条消息,页上的每个控件对应消息中的一个部分。

text/plain : 窗体数据以纯文本形式进行编码,其中不含任何控件或格式字符。

补充

form的enctype属性为编码方式,常用有两种: application/x-www-form-urlencoded 和 multipart/form-data , 默认为application/x-www-form-urlencoded 。

当action为get时候,浏览器用x-www-form-urlencoded的编码方式把form数据转换成一个字串(name1=value1&name2=value2...),然后把这个字串append到url后面,用?分割,加载这个新的url。

当action为post时候,浏览器把form数据封装到http body中,然后发送到server。

如果没有 type=file 的控件,用默认的 application/x-www-form-urlencoded 就可以了。

但是如果有 type=file 的话,就要用到 multipart/form-data 了。浏览器会把整个表单以控件为单位分割,并为每个部分加上Content-Disposition(form-data或者file)、Content-Type(默认为text/plain)、name(控件name)等信息,并加上分割符(boundary)。

php中time()与$_SERVER[REQUEST_TIME]用法区别
PHP遍历目录函数opendir()、readdir()、closedir()、rewinddir()总结
PHP中通过fopen()函数访问远程文件示例
php字符比较函数similar_text、strnatcmp与strcasecmp用法分析
php中current、next与reset函数用法实例
getimagesize获取图片尺寸实例
php中rename函数用法分析
php使用fsockopen函数发送post,get请求获取网页内容的方法
php中strtotime函数用法详解
php中常量DIRECTORY_SEPARATOR用法深入分析
php使用date和strtotime函数输出指定日期的方法
php5.3提示Function ereg() is deprecated Error问题解决方法
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2611816 bytes)
PHP错误Warning: Cannot modify header information - headers already sent by解决方法
PHP实现支持GET,POST,Multipart/form-data的HTTP请求类
PHP提示Cannot modify header information - headers already sent by解决方法
使用PHP和HTML5 FormData实现无刷新文件上传教程
Yii2使用小技巧之通过 Composer 添加 FontAwesome 字体资源
PHP延迟静态绑定示例分享
destoon整合ucenter后注册页面不跳转的解决方法
destoon整合UCenter图文教程
ThinkPHP3.1新特性之Action参数绑定
PHP中strlen()和mb_strlen()的区别浅析
ThinkPHP CURD方法之data方法详解
Thinkphp中Create方法深入探究
php smarty truncate UTF8乱码问题解决办法
codeigniter集成ucenter1.6双向通信的解决办法
Codeigniter中禁止A Database Error Occurred错误提示的方法
PHP 面向对象程序设计(oop)学习笔记 (四) - 异常处理类Exception
PHP微框架Dispatch简介
PHP资源管理框架Assetic简介
PHP开源开发框架ZendFramework使用中常见问题说明及解决方案
PHP FATAL ERROR: CALL TO UNDEFINED FUNCTION BCMUL()解决办法
PHP错误WARNING: SESSION_START() [FUNCTION.SESSION-START]解决方法
Drupal7 form表单二次开发要点与实例
©2014-2024 dbsqp.com