axios通过流来获取图片

  • Post author:
  • Post category:其他


axios通过流来获取图片

this.$axios.get('/api/ui/ombs/getCode',{
					responseType: 'arraybuffer'
				}).then(response => {
					return 'data:image/png;base64,' + btoa(new Uint8Array(response.data).reduce((data, byte) => data + String.fromCharCode(byte), ''));
				}).then(res => {
					this.codeImgUrl=res
				})



版权声明:本文为weixin_41628411原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。