目前工作中涉及到的content-type 有三种:
content-type:在Request Headers里,告诉服务器我们发送的请求信息是哪种格式的。
1 application/x-www-form-urlencoded
默认的。如果不指定content-type,默认使用此格式。
参数格式:key1=value1&key2=value2
2 application/json
参数为json格式
{
"key1":"value1",
"key2":"value2"
}
3 multipart/form-data [dinghanhua]
上传文件用这种格式
发送的请求示例:
the end!
时间: 2024-10-14 04:17:10