weex 长按图片保存

Posted httpl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了weex 长按图片保存相关的知识,希望对你有一定的参考价值。

// 页面部分
<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 长按图片保存的主要内容,如果未能解决你的问题,请参考以下文章

ios中,长按Webview中的图片

html5 微信公众号 长按图片没有弹出发送给朋友,显示的是保存图片

canvas绘制图片,实现在微信里长按保存图片

Mui 长按保存图片

ios怎么保存别人回答给你的图片?长按了图片没有用。

苹果手机在百度知道上长按不能保存图片,请问怎么才能保存