在请求数据的时候后台报30001错
有一种可能是在数据请求的时候,请求头header 的格式不对,需要在请求的方法中写一个header 请求头
export function getAddcart(data){
return req.request({
url:'/jingli-multishop/buyer/trade/carts',
method:'post',
data,
header:{'content-type':'application/x-www-form-urlencoded'}
})
}