excel导出前端vue
摘要:export_excel(){ this.axios.get('downExcelView/',{responseType:'blob'}).then(res=>{ var blob = new Blob([res.data], {type: 'application/vnd.openxmlform
阅读全文
posted @
2021-04-16 20:16
v3174
阅读(73)
推荐(0)
后端excel导出
摘要:import iofrom django.http import HttpResponseimport xlwtimport osfrom django.views import View class DownExcelView(View): def get(self, request): list
阅读全文
posted @
2021-04-16 20:15
v3174
阅读(129)
推荐(0)