今天调试上传文件接口时发现iOS那边在传Header的时候,在Content Type中传了一个boundary。这个是干什么用的?
我们先了解一下application/x-www-form-urlencoded。这个一般是Content-Type的默认值。比如你想传递:这样的post请求:
name = John
age = 12
content-type填写application/x-www-form-urlencoded,服务器就知道参数用&隔开了:
name=John&age=12
那么当服务端接受一个multipart/form-data类型的post请求的时候,它怎么知道参数的开始和结束呢?这时候就是使用boundary了,作用跟&类似。
我们可以看看下面的例子:
POST http://www.example.com HTTP/1.1
Content-Type:multipart/form-data; boundary=WebKitFormBoundaryrGKCBY7qhFd3TrwA
//消息主体开始
--WebKitFormBoundaryrGKCBY7qhFd3TrwA
Content-Disposition: form-data; name="text"
title
//消息主体开始
--WebKitFormBoundaryrGKCBY7qhFd3TrwA
Content-Disposition: form-data; name="file"; filename="chrome.png"
Content-Type: image/png
PNG ... content of chrome.png ...
//消息主体结束
--WebKitFormBoundaryrGKCBY7qhFd3TrwA--
boundary是用来分割不同字段用的,可以任意定义,但要保证不与消息主体重复啊。--boundary
代表消息主体开始,--boundary--
代表结束。
Reference:
[1]http://stackoverflow.com/questions/3508338/what-is-the-boundary-in-multipart-form-data
[2]https://imququ.com/post/four-ways-to-post-data-in-http.html