收藏
回答

公众号网页调用chooseImage:permission denied?

wx.chooseImage({

                count: img_count,  //照片数数1

                sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有

                sourceType: ['album', 'camera'],

                success: function (res) {

                    alert(res.localIds);

                    //images.localId = res.localIds;

                    //upload_img(maxnum, input_name, 0, res.localIds);

                },

                fail: function (res) {

                    // 处理失败情况

                    alert(res.errMsg);

                }

            });

开发者工具中点击可以正常弹出,从众号进入就提示:chooseImage:permission denied



最后一次编辑于  09-26
回答关注问题邀请回答
收藏

2 个回答

  • 社区技术运营专员--许涛
    社区技术运营专员--许涛
    09-26

    你好,可以点击顶部菜单「微信开发者工具」-「调试」-「调试微信开发者工具」,选到network面板,然后刷新一下你当前的网页,找到 `preverify` 这个接口,看看verify_info_list里的chooseImage的状态是什么

    09-26
    有用
    回复 3
    • 招财猫
      招财猫
      09-26
      verify_info_list:[]这是什么情况
      是我参数错误?其他接口又可以。。。
      09-26
      回复
    • 招财猫
      招财猫
      09-26
      check返回也是OK的 
      //wx.checkJsApi({
                  // jsApiList: ['chooseImage'], // 需要检测的JS接口列表,所有JS接口列表见附录2,
                  // success: function (res) {
                  // // 以键值对的形式返回,可用的api值true,不可用为false
                  // // 如:{"checkResult":{"chooseImage":true},"errMsg":"checkJsApi:ok"}
                  // alert(res.checkResult.chooseImage);
                  // }
                  //});
      09-26
      回复
    • 社区技术运营专员--许涛
      社区技术运营专员--许涛
      09-29回复招财猫
      先解决下签名问题
      09-29
      回复
  • 招财猫
    招财猫
    09-26

    wx.chooseImage({

                    count: img_count,  //照片数数1

                    sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有

                    sourceType: ['album', 'camera'],

                    success: function (res) {

                        alert(res.localIds);

                        //images.localId = res.localIds;

                        //upload_img(maxnum, input_name, 0, res.localIds);

                    },

                    fail: function (res) {

                        // 处理失败情况

                        alert(res.errMsg);

                    }

                });

    09-26
    有用
    回复 1
    • nothing_z
      nothing_z
      10-16
      你好,我这使用的测试号,在开发者工具中点击可以正常弹出,从众号进入就提示:chooseImage:permission denied,请问你那是怎么解决的?
      10-16
      回复
登录 后发表内容