当前位置:   article > 正文

wx.getImageInfo file not found、downloadfile:not in domalist list等问题_getimageinfo:fail file not found

getimageinfo:fail file not found
  1. 网络图片地址域名未在小程序后台request和download合法请求设置
  2. 真机调式是否开启不校验合法域名。。(实际上应该要开启的,因为上线环境就是要校验的)
  3. 各种清理缓存设置
  4. 创建的image对象要使用,getImageInfo成功回调res里的path
    以上排除后, 在真机环境调式成功,线上体验环境调式成功(记得把之前的线上体验版在小程序先删除,再扫码)。
    我是4号问题
    和我遇到一样问题的朋友可以按以上方式试一下。

下面是成功的代码

const imgPath = 'https://qiniu.image.yiheauc.com/static/checkbook.png';
        wx.getImageInfo({
            src: imgPath,
            success: (res) => {
                const imgObj = canvas.createImage();
                imgObj.src = res.path;
                imgObj.onload = () => {
                    ctx.drawImage(imgObj, 0, 0, 375, 480);
                    imgObj2 && ctx.drawImage(imgObj2, 30, 400, 60, 60);
                    ctx.font = 'normal bold 15px Arial';
                    ctx.fillText(paddleNumber, 75, 85);
                    ctx.fillText(vendueTime, 201, 83);
                    ctx.fillText(vendueName, 85, 106);
                    ctx.fillText(moment().format('YYYY年MM月DD日'), 220, 450);
                    let textHeight = 190;
                    bidList && bidList.forEach((ele, index) => {
                        auctionStr += `LOT ${ele.auction.lot}${formatMoney(ele.price, 0)}`;
                        if ((index + 1) % 2 === 0) {
                            const str = auctionStr;
                            ctx.fillText(str, 20, textHeight);
                            textHeight += 20;
                            auctionStr = '';
                        }
                        if (bidList.length % 2 !== 0 && index === bidList.length - 1) {
                            ctx.fillText(auctionStr, 20, textHeight);
                        }
                    });
                };
            },
            fail: (err) => {
                console.log(err);
            },
        });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/675127
推荐阅读
相关标签
  

闽ICP备14008679号