1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > vue复制图片到剪切板

vue复制图片到剪切板

时间:2021-07-16 17:29:58

相关推荐

vue复制图片到剪切板

vue复制图片到剪切板

最开始使用clipboard2,本地和测试环境都能运行,到了生产环境就无法粘贴到微信。

后来搜索到可以将图片转换成blod直接复制到剪切板,代码如下

<img :src="codeUrl" width="200px" id="img_body">

<el-button v-if="copyLink" type="text" @click="copyImg">复制二维码</el-button>

async copyImg(e) {var _this = thisconst img = document.querySelector('#img_body')const setToClipboard = blob => {const data = [new ClipboardItem({ [blob.type]: blob })]return navigator.clipboard.write(data)}try {const response = await fetch(img.src)const blob = await response.blob()setToClipboard(blob)_this.$message({message: '复制成功',type: 'success'})} catch (error) {_this.$message({message: '复制失败',type: 'error'})}}

注:需要https或者本地环境才可以获得剪切板权限

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。