post请求后端如果传参只需要一个字符串,不需要键名怎么弄?
2023-01-13 本文已影响0人
jesse28
//稽查来源字典
export function getEnumItemByModuleApi(data) {
return request({
url: `${sysAPI}/enumItem/getEnumItemByModule`,
method: 'post',
data,
hideloading: false,
headers: {
'Content-Type': 'application/json;charset=UTF-8'
}
})
}
则需要给他加上headers: {
'Content-Type': 'application/json;charset=UTF-8'
}
就可以了。
image.png