wx.canvasToTempFilePath 返回的地址image无法显示
IDE版本:v1.02.1802080
问题:使用wx.canvasToTempFilePath代码如下
//js
let w = 750 * this.data.scale;
let h = 1331 * this.data.scale;
wx.canvasToTempFilePath({
x: 0,
y: 0,
width: w,
height: h,
destWidth: w,
destHeight: h,
fileType: 'jpg',
canvasId: 'canvas-demo',
success: (res) => {
this.setData({
resultImg: res.tempFilePath
});
wx.hideLoading();
}
})
//wxml
VM10634:2 Failed to load image http://tmp/wx29b36995dd2d651d.o6zAJsylq9Cfw8ycQlyhqBBjOUhM.83919b7049fe20ff87cff1c78bcae1f6.jpg
the server responded with a status of 404 (HTTP/1.1 404 Not Found)
From server 127.0.0.1
报错提示 如上面 但是真机不会
顺便说一下 IDE没有更新之前做过一个项目 是没有这个问题的
微信小程序开发问题解答 本文来自微信小程序工厂 http://www.xcxgc.com,转载请保留。
微信小程序开发者回答:
(***:
我之前碰到这个问题的解决办法:
关掉本地代理
重启一下调试器
当时我返回的是HTTPS本地链接, 在调试器里勾选"不校验安全域名、web-view 域名、TLS 版本以及 HTTPS 证书"
(***: 我之前碰到这个问题的解决办法:
关掉本地代理重启一下调试器在调试器里勾选"不校验安全域名、web-view 域名、TLS 版本以及 HTTPS 证书"
我程序不存在fail url not in domain list错误请复查
本文网址:http://www.91bianli.com/weixinxiaochengxu/32679.html