通常数据请求的方法get和post。
post请求传参,传递的参数不存在,但在请求中看得到参数,只是参数的格式是Request Payload,具体原因 :参数格式不对。
例如:
this.$axios.post('/archivesManagement/file/fileDownload', { params: { id: '1471661374581911554' }, }) .then((res) => {})
可以尝试new一个对象,把参数放到对象里
let params = new URLSearchParams() params.append('id', '1471661374581911554') this.$axios .post('/archivesManagement/file/fileDownload',
{ params})
.then((res) => {})