vue 導出blob 代碼

this.$axios.post(url, {
	"deviceLike": _this.select_word
},{ responseType: 'arraybuffer' }).then(res => {
	if(res && res.data){
		let blob = new Blob([res.data], { type: 'application/vnd.ms-excel' });
		let objectUrl = URL.createObjectURL(blob);
		window.location.href = objectUrl;
	}
})
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章