收藏
回答

为何PC端微信小程序使用wx.previewImage打开图片提示图片下载失败?

图片路径为https


回答关注问题邀请回答
收藏

3 个回答

  • eagle
    eagle
    2021-06-22

    //图片预览

    $("#Tolist").on("click",".img_prev",function(){

    var hosts = window.location.host; 

       var url ="http://"+hosts+$(this).attr("src");

      var arr = Array();

      $(".img_prev").each(function(index){

       var temp = "http://"+hosts+$(this).attr("src");

       //alert(index);

    arr.push(temp);

    });

    //pc端查看图片

    //var _this = $(this);

               // imgShow("#outerdiv", "#innerdiv", "#bigimg", url);

                console.log(url);

                console.log(arr);

                //移动端查看图片

    wx.previewImage({

    current:encodeURI(url), // 当前显示图片的http链接

    urls: arr // 需要预览的图片http链接列表

    });

    });

    手机端正常。pc端, macos 都不行。

    2021-06-22
    有用
    回复
  • Lemon
    Lemon
    2020-11-30

    图片命名是中文的吗?我也出现这种情况(移动端正常)

    2020-11-30
    有用
    回复
  • Cjiang
    Cjiang
    2020-07-16

    请提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2020-07-16
    有用
    回复
登录 后发表内容
问题标签