美文网首页
小程序申请权限保存图片到相册

小程序申请权限保存图片到相册

作者: 叫丽丽啊 | 来源:发表于2024-06-03 18:01 被阅读0次
image.png
wx.saveImageToPhotosAlbum({
      filePath: path,
      success: (res) => {
        wx.showToast({
          title: '保存成功,请到相册查看',
          icon: 'none'
        })
      },
      fail: (res) => {
        wx.getSetting({
          success: res => {
            let authSetting = res.authSetting
            if (!authSetting['scope.writePhotosAlbum']) {
              wx.showToast({
                title: '授权失败',
                icon: 'error'
              })
            } else {
              wx.showToast({
                title: '保存失败',
                icon: 'error'
              })
            }
          }
        })
      }
    })

相关文章

网友评论

      本文标题:小程序申请权限保存图片到相册

      本文链接:https://www.haomeiwen.com/subject/odeeqjtx.html