vue 다운로드 파일 흐름
771 단어 노인 건망증 노트
, kalman_btn() {
var that = this;
that.axios({
method: 'post',
url: 'kalman/export',
data: {
token: http.getToken()
},
responseType: 'blob'
}).then(response => {
console.log(response)
that.download(response)
}).catch((error) => {
})
}
//
, download (data) {
if (!data) {
return
}
let url = window.URL.createObjectURL(new Blob([data]))
let link = document.createElement('a')
link.style.display = 'none'
link.href = url
link.setAttribute('download', 'excel.xlsx')
document.body.appendChild(link)
link.click()
}