码迷,mamicode.com
首页 > 其他好文 > 详细

weex 长按图片保存

时间:2018-11-29 15:09:43      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:show   method   src   timeout   UNC   sage   div   ima   style   

// 页面部分
<div v-for="(v,index) in imageList" :style="{ height: height + ‘px‘}" :key="index">
<image resize="cover"
@touchstart="start(index)" //点击图片开始
@touchend="end" //点击图片结束
:src="v.src" :style="{ height: height + ‘px‘, width: width + ‘px‘}">

提示// ios中需要配置权限 在xcode info.plist 加入NSPhotoLibraryAddUsageDescription 从而获取保存图片权限

//js部分 method里面

          start (index) {
            const self = this
            this.index  = index
            self.isShow = setTimeout(() => {
                    //这是weex官方提供的保存图片
                self.$refs[‘img‘].save(function(result) {
                        modal.toast({
                        message: `保存成功`,
                        duration: 0.3
                    })
                });
            }, 1000);
        },
        end () {
            clearInterval(this.isShow)
        }

weex 长按图片保存

标签:show   method   src   timeout   UNC   sage   div   ima   style   

原文地址:https://www.cnblogs.com/httpL/p/10037417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!