您好,登錄后才能下訂單哦!
這篇文章主要講解了“Vue拿到二進制流圖片怎么轉(zhuǎn)為正常圖片并顯示”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Vue拿到二進制流圖片怎么轉(zhuǎn)為正常圖片并顯示”吧!
第一步
axios({ method: 'get', url, responseType: 'arraybuffer' // 最為關(guān)鍵 }) .then(function (response) { that.src = 'data:image/jpeg;base64,' + that.arrayBufferToBase64(response.data) })
arrayBufferToBase64 (buffer) { var binary = '' var bytes = new Uint8Array(buffer) var len = bytes.byteLength for (var i = 0; i < len; i++) { binary += String.fromCharCode(bytes[i]) } return window.btoa(binary) },
<img :src="src" alt="驗證碼">
<el-image v-loading="loading" style='height: 480px;' :src="imgsrc"></el-image>
// /api/plan.js文件請求方法 export function getFlowPhoto(data) { return request({ url: '/xxx/xxxx/getFlowPhoto', method: 'post', responseType: 'blob', data }) }
<script> import {getFlowPhoto} from "@/api/plan.js"; export default { data() { return { imgsrc:'', loading:false, } }, mounted() {}, methods: { fetchData() { this.loading = true; var that = this; getFlowPhoto({id:xxx}).then((res) => { if(res.code == 401){ this.$message({ message: res.message, type: "error", }); } if(res){ const myBlob = new window.Blob([res], {type: 'image/jpeg'}) const qrUrl = window.URL.createObjectURL(myBlob) this.imgsrc = qrUrl; this.loading = false; } }); }, } } </script>
感謝各位的閱讀,以上就是“Vue拿到二進制流圖片怎么轉(zhuǎn)為正常圖片并顯示”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Vue拿到二進制流圖片怎么轉(zhuǎn)為正常圖片并顯示這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。