问题
我在 uniapp 中调用 Android 原生插件中拍照返回的图片(Base64格式),在 image
标签中不显示问题。
解决
因为 Base64 字符串中存在空格和换行。
this.imageSrc = this.imageSrc.replace(/[\r\n]/g,'');// 去除换行
问题
我在 uniapp 中调用 Android 原生插件中拍照返回的图片(Base64格式),在 image
标签中不显示问题。
解决
因为 Base64 字符串中存在空格和换行。
this.imageSrc = this.imageSrc.replace(/[\r\n]/g,'');// 去除换行