uniapp微信小程序上传内容转为base64

uniapp微信小程序上传内容转为base64:

// #ifdef MP-WEIXIN
	wx.getFileSystemManager().readFile({
		filePath: this.largeList.autograph, //选择图片返回的相对路径
		encoding: 'base64', //编码格式
		success: res => {
			//成功的回调
			console.log('data:image/png;base64,' + res.data);
			this.largeList.autograph = 'data:image/png;base64,' + res.data;//拼接后返回
		}
	});
// #endif

你可能感兴趣的:(uniapp微信小程序上传内容转为base64)