您现在的位置是:首页 > 网站制作 > uni-appuni-app
微信小程序,uni-app base64转临时链接
蒙xs2022-10-18【uni-app】人已围观
简介1.公共方法添加function base64src (base64data, fun){
const base64 = base64data; //base64格式图片
const time = new Date().getTime();
const imgPat
1.公共方法添加
2.使用
function base64src (base64data, fun){
const base64 = base64data; //base64格式图片
const time = new Date().getTime();
const imgPath = wx.env.USER_DATA_PATH + "/poster" + time + "share" + ".png";
//如果图片字符串不含要清空的前缀,可以不执行下行代码.
const imageData = base64.replace(/^data:image\/\w+;base64,/, "");
const file = wx.getFileSystemManager();
file.writeFileSync(imgPath, imageData, "base64");
fun(imgPath);
}
const base64 = base64data; //base64格式图片
const time = new Date().getTime();
const imgPath = wx.env.USER_DATA_PATH + "/poster" + time + "share" + ".png";
//如果图片字符串不含要清空的前缀,可以不执行下行代码.
const imageData = base64.replace(/^data:image\/\w+;base64,/, "");
const file = wx.getFileSystemManager();
file.writeFileSync(imgPath, imageData, "base64");
fun(imgPath);
}
2.使用
导入 import common from '@/utils/common.js'
common.base64src(res.data.data, (res) => {
console.log(res)
});
common.base64src(res.data.data, (res) => {
console.log(res)
});
Tags:
很赞哦! ()