标签:存在 ring 格式 方法 host 就会 val 16px ber
1、400状态码
application/json
若后端的请求头是:
application/x-www-form-urlencoded
application/x-www-form-urlencoded表示:
数据被编码为名称/值对。这是标准的编码格式。
若前端发送post请求时的参数以json格式发送就会报400,
this.$http.post({
url:‘/v1/assets‘,
data:{
name: this.form.name,
categoryType: this.form.type,
categoryName: this.form.type === "power" ? "电源" : "其他配件",
fee: 123.5,
factoryId: 1
}
修改方法:对请求的参数进行 序列化成URL形成发送。
使用qs库的qs.stringify方法即可。
标签:存在 ring 格式 方法 host 就会 val 16px ber
原文地址:https://www.cnblogs.com/mengfangui/p/11505124.html