赞
踩
- wx.getImageInfo({
- src: tempFilePath,
- success: res => {
- console.log(res);
- console.log(res.type);
- wx.getFileSystemManager().readFile({
- filePath: tempFilePath, // 图片路径
- encoding: 'base64', // 转换为base64
- success: res => {
- console.log(res.data); // 转换后的base64
- const base64 = _this.data.base64Arr
- base64.push(JSON.stringify(res.data))
- ...这里就可以用base做任何操作了
- },
- fail: err => {
- console.log(err);
- }
- })
- }
- })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。