uniapp中预览base64图片

一、首先要安装插件image-tools,插件地址:https://ext.dcloud.net.cn/plugin?id=123

npm i image-tools --save

二、引入

import {
			pathToBase64,
			base64ToPath
		} from 'image-tools'

三、应用

openImg(){//预览图片	
				let that = this;
				uni.showLoading({
					title: "加载中..."
				})
				var arr=[];
				base64ToPath(this.bimg)
					.then(path => {
						console.log('----',path);
						uni.hideLoading()
						arr[0] = path;
						uni.previewImage({
							current: 0,
							urls: arr
						});
					})
					.catch(error => {
						// 图片加载失败
						uni.hideLoading()
					})
					
			},
上一篇:VTK----VTK的事件机制


下一篇:How to install PyAlink on Ubuntu 22.04-环境准备