post请求的常用的格式(请求参数在Body里面)
1)form-data格式: multipart/form-data; boundary= 可以上传文件、图片等
2)x-www-form-urlencoded格式: application/x-www-form-urlencoded 只能是键值对
3)json格式 application/json
post请求和get请求的区别
1)post请求传输的数据相对安全
2)post请求可以上传文件
三种请求体中 content-Type的差异
没有说固定使用哪一种 ,根据接口文档定义的
post请求体中三种常用的传递参数格式
1)form-data格式:
请求的地址:
localhost:8085/pub/api/flogin
请求的参数:(参数都是必填的,不填或者参数不一致,将无法返回预期的结果)
name:老王
password:xdclass
pcode:xdclass
2)x-www-form-urlencoded格式
请求的地址:
localhost:8085/pub/api/login
请求的参数:(参数都是必填的,不填或者参数不一致,将无法返回预期的结果)
name:小滴
password:xdclass
pcode:xdclass
3)json格式
请求的地址:
localhost:8085/pub/api/Jlogin
请求的参数:(参数都是必填的,不填或者参数不一致,将无法返回预期的结果)
{
"name":"anna小姐姐",
"password":"xdclass",
"pcode":"xdclass"
}
网友评论