美文网首页
post 时Content-Type

post 时Content-Type

作者: kelly_0416 | 来源:发表于2019-08-26 11:02 被阅读0次

使用axios时,post的data参数

1.application/x-www-form-urlencoded
data类型-表单(axios默认值)
data需要qs.stringify

return axios.post(URL, qs.stringify(data));
application:x-www-form-urlencoded.png

2.application/json;charset=UTF-8
json类型

return axios.post(URL, data, { header: {
        'Content-Type': 'application/json;charset=UTF-8'
    }} );
//或者
return axios.post(URL, data );
application:json;charset=UTF-8.png

form.后端用参数接数据,json后端用body接数据

相关文章

网友评论

      本文标题:post 时Content-Type

      本文链接:https://www.haomeiwen.com/subject/odkrectx.html