save-image-to-photos-album.uvue 913 字节
Newer Older
张磊 已提交
1 2 3
<template>
	<!-- #ifdef APP -->
	<scroll-view style="flex:1">
张磊 已提交
4
		<!-- #endif -->
DCloud-yyl's avatar
DCloud-yyl 已提交
5
		<image src="/static/uni.png" style="margin: 30rpx 200rpx;height:196px;width:196pxpx;"></image>
W
wanganxp 已提交
6
		<button style="margin: 30rpx;" @click="saveImage">将图片保存到手机相册</button>
张磊 已提交
7
		<!-- #ifdef APP -->
张磊 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20
	</scroll-view>
	<!-- #endif -->
</template>

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

<style>
DCloud-yyl's avatar
DCloud-yyl 已提交
42
</style>