您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關vue element中axios如何下載文件的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
?axios 接受文件流,需要設置 {responseType:'arraybuffer'}
axios.post( apiUrl, formdata, {responseType:'arraybuffer'} ).then(res=> { if (res.status === 200) { let blob = new Blob([res.data], { type: res.headers['content-type'] }); const fileName = res.headers['content-disposition']; const title = fileName && (fileName.indexOf('filename=') !== -1) ? fileName.split('=')[1] : 'download'; require('script-loader!file-saver'); saveAs(blob, title); } }) .catch();
注: axios 中 response 表示服務器響應的數據類型,可以是 arraybuffer , blob, document , json , text , stream . 默認為: json
?后端發送文件:Python
from flask import send_from_directory @admin_bp.route('/tasksothers/download', methods=["GET", "POST"]) @auth.login_required def api_tasksothers_download(): root_path = '' src_name = "a.sql" upload_path = os.path.join(root_path, src_name) print("upload_path =", upload_path) if os.path.isfile(upload_path): response = send_from_directory(root_path, src_name, as_attachment=True) print("response: ",response) response.headers["Access-Control-Expose-Headers"] = "Content-disposition" print("response: ", response.headers) return response
注: 如果 response.header 中沒有添加 Access-Control-Expose-Headers 這個參數(代表:服務器允許瀏覽器訪問的頭(headers)的白名單),vue中就無法獲取 content-disposition,即 res.headers['content-disposition'];無法找到
感謝各位的閱讀!關于“vue element中axios如何下載文件”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。