调用wx.saveImageToPhotosAlbum可以保存照片到手机相册

    saveImageToPhotosAlbum的参数说明
    image.png

    1. index.wxml
    2. <view>
    3. <button bindtap='chooseImage'>选择图片</button>
    4. <image mode="aspectFit" src="{{imgsrc[0]}}" bindtap='reviewImage'></image>
    5. <button bindtap='savephoto'>保存图片到相册</button>
    6. </view>
    1. index.js
    2. Page({
    3. data:{
    4. imgsrc:[]
    5. },
    6. ...省略部分代码
    7. savephoto: function(){
    8. var _that = this;
    9. var imgsrc = _that.data.imgsrc
    10. wx.saveImageToPhotosAlbum({
    11. filePath: imgsrc[0],
    12. success(res) {
    13. wx.showToast({
    14. title: '照片已经保存到相册',
    15. })
    16. }
    17. })
    18. }
    19. })