Vue导出表格 调用后端接口
在http.js文件夹中:
export function downFile(url, data, filename) {
axios.post(url, data, { responseType: 'blob' })
.then(data => {
let blob = new Blob([data.data]);
console.log(data);
let url = window.URL.createObjectURL(blob);
let link = document.createElement('a');
link.style.display = 'none';
link.href = url;
link.setAttribute('download', filename);
document.body.appendChild(link);
link.click();
window.URL.re
Vue导出表格 调用后端接口最先出现在Python成神之路。
共有 0 条评论