save-image-to-photos-album.uvue 1.2 KB
Newer Older
张磊 已提交
1
<template>
H
hdx 已提交
2 3 4
  <!-- #ifdef APP -->
  <scroll-view style="flex:1">
  <!-- #endif -->
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
5 6 7 8 9
    <page-head :title="title"></page-head>
    <view class="uni-padding-wrap">
      <image class="image" src="/static/uni.png"></image>
      <button class="margin-top-10" type="primary" @click="saveImage">将图片保存到手机相册</button>
    </view>
H
hdx 已提交
10 11 12
  <!-- #ifdef APP -->
  </scroll-view>
  <!-- #endif -->
张磊 已提交
13 14 15
</template>

<script>
H
hdx 已提交
16 17 18
  export default {
    data() {
      return {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
19
        title: "saveImageToPhotosAlbum"
H
hdx 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
      }
    },
    methods: {
      saveImage() {
        uni.saveImageToPhotosAlbum({
          filePath: "/static/uni.png",
          success() {
            uni.showToast({
              position: "center",
              icon: "none",
              title: "图片保存成功,请到手机相册查看"
            })
          },
          fail(e) {
            uni.showModal({
              content: "保存相册失败,errCode:" + e.errCode + ",errMsg:" + e.errMsg + ",errSubject:" + e.errSubject,
              showCancel: false
            });
          }
        })
      }
    }
  }
张磊 已提交
43 44 45
</script>

<style>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
46 47 48 49 50 51 52 53 54
  .margin-top-10 {
    margin-top: 10px;
  }

  .image {
    width: 196px;
    height: 196px;
    align-self: center;
  }
DCloud-yyl's avatar
DCloud-yyl 已提交
55
</style>