data params content-type formdata 请求注意点笔记
Posted 嘿起屁儿整
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了data params content-type formdata 请求注意点笔记相关的知识,希望对你有一定的参考价值。
data params formdata请求参数的区别
axios(
method: "get",
url: "http://www.tuling123.com/openapi/api?key=20ff1803ff65429b809a310653c9daac",
params:
info: "西安天气"
,
)
- params参数放在请求url中,一般用于get请求
- data参数放在请求body中,一般用于post请求
- formdata参数一般用于传文件,或者其他key/value的普通请求
content-type
例如: Content-Type: text/html;charset:utf-8;
普通的 媒体格式类型如下:
- text/html : HTML格式
- text/plain :纯文本格式
- text/xml : XML格式
- image/gif :gif图片格式
- image/jpeg :jpg图片格式
- image/png:png图片格式
以 application开头 的媒体格式类型:
- application/xhtml+xml :XHTML格式
- application/xml : XML数据格式
- application/atom+xml :Atom XML聚合格式
- application/json : JSON数据格式
- application/pdf :pdf格式
- application/msword : Word文档格式
- application/octet-stream : 二进制流数据(如常见的文件下载)
- application/x-www-form-urlencoded : form表单数据被编码为key/value格式发送到服务器(form表单默认的提交数据的格式)
上传文件 使用的:
- multipart/form-data : 需要在表单中进行文件上传时,就需要使用该格式
以上是关于data params content-type formdata 请求注意点笔记的主要内容,如果未能解决你的问题,请参考以下文章
python接口请求 JSON parse error: Unrecognized token 'type': was expecting 'null'
Linux curl发送post请求携带form参数(Content-Type: application/x-www-form-urlencoded)