作者:moses_945_5e245a | 来源:互联网 | 2024-10-14 13:02
这是接口文档,功能是导出excel表格我的代码:12345678910111213this.$axios.get('/student/studentDataExport',{ params:{
这是接口文档,功能是导出excel表格
我的代码:
1 2 3 4 5 6 7 8 9 10 11 12 13
| this.$axios.get('/student/studentDataExport',{
params:{
schoolUid:this.common.getLocal('roleId'),
schoolGradeUid:this.value_grade,
classUid:this.value_class,
name:this.keyword,
pageNum:0,
pageSize:0
}
})
.then(res=>{
console.log(res);
}) |
我用接口文档的在线调试就可以导出表格,用代码就不行,第一次遇到这种BINARY响应类型不知道该如何使用