<table class="text">
<tr class="li1"><td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 后台数据的时候,默认的头部配置是 Content-Type: application/x-www-form-urlencoded;charset=UTF-8 这样的话,data的配置格式和传递的格式就是一样的,都是是json键值对 data:{"token":"eff6cd7f98a447daf14441c994913e46","ShopId":"200209456103948288"} 如果要传字符串格式,就需要转化一下 qs.stringify(data) token=eff6cd7f98a447daf14441c994913e46&ShopId=200209456103948288 但是你头部配置的是 Content-Type: application/json;charset=UTF-8 那也不用对数据做处理了,传递的格式就是json格式了 原文链接:https://www.f2er.com/note/413921.html