postman raw和form-data vue
postman中的form-data和raw格式是不同的
参考:https://blog.csdn.net/qq_40652539/article/details/102912133
普通的post传参中传的json字符串
axios.defaults.headers['Content-Type'] = 'application/json;charset=utf-8'
{cookie:123}
raw就是json类型的字符串对象
form-data是需要另一种字符串格式
cookie=123&cc=rr
headers: { 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8' },