本文主要是介绍前端如何获取响应头Content-Disposition中的filename,获取文件类型fileType进行不同类型的文件预览,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
// 预览文件preview: function(item) {var vm = this;if (!item.raw) {var itemBasicId = this.form.itemBasicIdvar url =ctx + '/aea/item/basic/getItemDocOrTemplateFile.do?itemBasicId='+itemBasicId+'&fileType=applyTableTemplate'axios({method: 'GET',headers: { 'Authorization': 'bearer '+localStorage.getItem("access_token") },url: url,originResponse: true,responseType: 'blob' // 更改responseType类型为 blob}).then( function(res) {vm.previewPdfAndPic(res.data)}).catch(function(err) {console.log(err)})}else{// vm.openBlobFile(item)}},previewPdfAndPic: function (<
这篇关于前端如何获取响应头Content-Disposition中的filename,获取文件类型fileType进行不同类型的文件预览的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!