小程序
小游戏
企业微信
微信支付
扫描小程序码分享
ios手机有毒呀加载不了临时图片路径,Android的就可以~ 大哥有ios手机的可以试试
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<view class="page_wrap">
<image class="poster_img" src="{{imgSrc}}" mode="" show-menu-by-longpress="true" />
</view>
data: {
imgSrc: null
},
onLoad(query) {
// console.log('onLoad============')
this.initData(query)
initData(query) {
this.base64Src(query.base64Img, (tempFilePath) => {
this.setData({
imgSrc: tempFilePath
})
})}
base64Src(base64data, fun) {
const base64 = base64data; //base64格式图片
const time = new Date().getTime();
const imgPath = wx.env.USER_DATA_PATH + "/poster" + time + "share" + ".png";
// const imgPath = wx.env.USER_DATA_PATH + "/poster.jpeg";
//如果图片字符串不含要清空的前缀,可以不执行下行代码.
const imageData = base64.replace(/^data:image\/\w+;base64,/, "");
const file = wx.getFileSystemManager(); // 获取全局唯一的文件管理器
file.writeFileSync(imgPath, imageData, "base64");
fun(imgPath);
生成的临时 图片路径 在ios上显示不出来,安卓可以
生成的临时地址:http://usr/poster1671681920883share.png
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
图片可以直接使用fileId显示的
请提供能复现问题的代码片段
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<view class="page_wrap">
<image class="poster_img" src="{{imgSrc}}" mode="" show-menu-by-longpress="true" />
</view>
data: {
imgSrc: null
},
onLoad(query) {
// console.log('onLoad============')
this.initData(query)
},
initData(query) {
this.base64Src(query.base64Img, (tempFilePath) => {
this.setData({
imgSrc: tempFilePath
})
})}
base64Src(base64data, fun) {
const base64 = base64data; //base64格式图片
const time = new Date().getTime();
const imgPath = wx.env.USER_DATA_PATH + "/poster" + time + "share" + ".png";
// const imgPath = wx.env.USER_DATA_PATH + "/poster.jpeg";
//如果图片字符串不含要清空的前缀,可以不执行下行代码.
const imageData = base64.replace(/^data:image\/\w+;base64,/, "");
const file = wx.getFileSystemManager(); // 获取全局唯一的文件管理器
file.writeFileSync(imgPath, imageData, "base64");
fun(imgPath);
},
生成的临时 图片路径 在ios上显示不出来,安卓可以
生成的临时地址:http://usr/poster1671681920883share.png
图片可以直接使用fileId显示的
请提供能复现问题的代码片段
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html