fileUpload() { let _this = this; uni.chooseImage({ count: 1, success: res => { this.urlTobase64(res.tempFilePaths[0]); } }) }, // 获取图片 ...
直接上代码了,网上也很多一样的,这里记录下,因为仅仅第二种在真机微信小程序上我这里测试转换失败,所以就一并写在这里了: ...
2020-04-09 17:02 0 6448 推荐指数:
fileUpload() { let _this = this; uni.chooseImage({ count: 1, success: res => { this.urlTobase64(res.tempFilePaths[0]); } }) }, // 获取图片 ...
发送请求 发送请求拿到返回数据后转换base64格式 image标签(防止转化后存在空格) ...
...
来源:https://www.jianshu.com/p/c0cd1b521b20 ...
最近使用uniapp涉及到一个上传图片的功能,原本看官方文档api觉得没问题,正常开发, 1. 首先微信端没问题 2. 支付宝小程序出现了问题,真机ios上传图片获取不到base64 官方文档看了很多没用,也不知道是不是自己看漏了,查了很多资料,最后使用canvas解决 ...