美文网首页
post/get请求时遇到的一些问题

post/get请求时遇到的一些问题

作者: 天字一等 | 来源:发表于2018-12-21 15:01 被阅读101次

    vue-axios get请求,数据是放在params中,数据会拼接在url中
    post请求,数据是添加到请求体body中,有时请求后台显示没有收到数据。解决办法:方法一:在请求头设置Content-Type:,如果是json格式数据,则axios.defaults.headers.post['Content-Type'] = 'application/json';因为不设置的话,默认是text/plain格式。方法二:使用qs:https://segmentfault.com/a/1190000012635783

    相关文章

      网友评论

          本文标题:post/get请求时遇到的一些问题

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