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