小程序图片保存到手机相册的坑
发布于 5 年前 作者 liaoyan 8680 次浏览 来自 问答

    wx.getSetting({

        success:function(res){

          if (!res.authSetting[‘scope.writePhotosAlbum’]){

             wx.authorize({

               scope: ‘scope.writePhotosAlbum’,

               success:function(res){

                  wx.downloadFile({

                    url:mpInvitePic,

                    success:function(res){

                      wx.saveImageToPhotosAlbum({

                        filePath: res.tempFilePath,

                         success:function(res){

                           wx.showToast({ title: ‘保存成功’, })

                         }

                       })

                    }

                  })

               },

               fail(res){

                 wx.showToast({

                   title:‘影响您使用小程序的某些功能’,

                   icon:‘none’

                 })

               }

             })

          }

        },

        fail(res){

        }

    })

老铁们帮忙看一下,我这个保存图片,在模拟器可以把图片保存到真机相册里,在体验版把图片保存到手机相册里不行

1 回复

你要在微信平台设置域名的时候,设置白名单,不然就没办法

回到顶部