您现在的位置是:首页 > 名人名句

前端发送请求之参数处理---【text/plain】与【application/json】

作者:往北时间:2024-04-30 14:41:56分类:名人名句

简介  文章浏览阅读2.1k次,点赞10次,收藏7次。Content-Type就是指 HTTP 发送信息至服务器时的内容编码类型,服务器根据编码类型使用特定的解析方式,获取数据流中的数据。其实前后端发送请求的方式有 text/plain、application/jso

点击全文阅读

Content-Type就是指 HTTP 发送信息至服务器时的内容编码类型,服务器根据编码类型使用特定的解析方式,获取数据流中的数据。

其实前后端发送请求的方式有 text/plain、application/json、application/x-www-form-urlencoded、
multipart/form-data等,这版接上一篇,继续介绍【text/plain】与【application/json】。

2、text/plain

设置headers后,直接发送请求

return request({    path: `/apis/list`,    // options为object,如{a: 3, b: 4}    params: options,    headers: {        'Content-Type': 'text/plain'    },    method: 'POST',  });

 

浏览器里面可以看到请求头:

2、application/json

设置headers后,直接发送请求

return request({    path: `/apis/list`,    // options为object,如{a: 3, b: 4}    params: options,    headers: {        'Content-Type': 'application/json'    },    method: 'POST',  });

底层接收params的位置,发送axios请求时,将params,转成字符串发送,如下:

return instance.request({        method,        url,        data: method === 'post' ? JSON.stringify(params) : undefined,        headers    });

即可。

以上仅为记录开发时的日志,代码并不完善~

点击全文阅读

郑重声明:

本站所有活动均为互联网所得,如有侵权请联系本站删除处理

我来说两句