感谢,顺便贴一下axios封装后的post写法:
// * qs的 post 或者 put 用法
export function deleteUserByIds({ ids }) {
return request({
url: '/user/deleteUserByIds',
method: 'post',
data: qs.stringify({ ids }, { arrayFormat: 'repeat' }, { charset: 'utf-8' })
})
}