小程序
小游戏
企业微信
微信支付
扫描小程序码分享
使用 wx.getImageInfo(OBJECT)接口,使用存储文件路径和相对路径在微信6.7.2版本被报错:errMsg:"getImageInfo:fail:file not not found"; 急救
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wechatide://minicode/a07de76a27e3e7836c4ea39d72f75eda
你好 是什么原因啊 能解决么
你好,问题已复现,我们尽快修复
好的 辛苦了
您好 你们这个问题解决了吗 我在ios微信6.7.3也出现了这个问题
同遇到这个问题,很急,楼主解决了吗
不同的机型和版本表现不同,有时可以,有时报错
你好 有解决方法吗
使用网络路径没有问题的 暂时先把图片放在服务器上使用
我们这边是 下载图片的域名没配好 现在可以了
var that = this; wx.getSystemInfo({ success:function(res){ var width = res.windowWidth wx.getImageInfo({ src: "../../images/index.png", success: function (res) { var height = res.height*width/res.width console.log(res); that.setData({ width: width, height: height }); }, complete: function(res){ console.log(res); } }) } });
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
wechatide://minicode/a07de76a27e3e7836c4ea39d72f75eda
你好 是什么原因啊 能解决么
你好,问题已复现,我们尽快修复
好的 辛苦了
您好 你们这个问题解决了吗 我在ios微信6.7.3也出现了这个问题
同遇到这个问题,很急,楼主解决了吗
不同的机型和版本表现不同,有时可以,有时报错
你好 有解决方法吗
使用网络路径没有问题的 暂时先把图片放在服务器上使用
我们这边是 下载图片的域名没配好 现在可以了
var that = this;
wx.getSystemInfo({
success:function(res){
var width = res.windowWidth
wx.getImageInfo({
src: "../../images/index.png",
success: function (res) {
var height = res.height*width/res.width
console.log(res);
that.setData({
width: width,
height: height
});
},
complete: function(res){
console.log(res);
}
})
}
});