Vue中实现图片黏贴上传到服务器:功能分析和实现

这篇具有很好参考价值的文章主要介绍了Vue中实现图片黏贴上传到服务器:功能分析和实现。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

主要的知识点是,浏览的paste事件,clipboardData

paste 一个标准的Dom事件,粘贴事件,会在用户按下Ctrl+v ,或者通过鼠标复制时触发.像其他事件一样,我们可以通过addEventListener为一个Element添加一个粘贴事件的监听函数 如以下代码。

document.addEventListener('paste', (event) => {
  // 阻止默认事件和冒泡行为
  pe.preventDefault()
  pe.stopPropagation()
  // 真正的黏贴事件
  console.log('粘贴事件', event)
});

 文章来源地址https://www.toymoban.com/news/detail-554004.html

我使用vue3,在页面初始化的时候,就绑定这个监听事件,全局监听页面上的黏贴事件,然后通过读取内容,将文件上传到服务器中,也支持微信截图上传:

// 图片黏贴上传功能
document.addEventListener('paste', (pe) => {
  pe.preventDefault()
  pe.stopPropagation()
  fileList.push(1)
  console.log('粘贴事件---', pe)
  var data = pe.clipboardData!.files[0]
  console.log('fun', data);
  if (!data) {
    return
  }
  var date = new Date()
  var reader = new FileReader();
  var uploadType = getType(data.type, data)
  reader.readAsDataURL(data);
  reader.onload = function (event) {
    console.log("加載成功-", event);
    // 用于预览图片
    var uploadFileRaw = reactive({
      name: data.lastModified + data.name,
      path: uploadType === 'picture' ? event!.target!.result as string : "",
      type: uploadType,
      size: (data.size / 1024 / 1024).toFixed(2).toString() + "M",
      sha: "",
      openLink: '',
      downLink: '',
      htmlLink: '',
      creatTime: `${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}`,
      selected: false,
      showTips: false,
      uploading: true,
    })
    gitFileList.push(uploadFileRaw)
    // 用于上传图片
    fileApi.uploadFile(`${filePath.value}/${data.lastModified + data.name}`, {
      "message": "Upload From FileHub",
      "content": (event!.target!.result! as string).split("base64,")[1]
    }).then((res: any) => {
      console.log("上传文件返回:", res);
      if (res.status === 201) {
        uploadFileRaw.uploading = false
        uploadFileRaw.path = res.data.content.path
        uploadFileRaw.sha = res.data.content.sha
        uploadFileRaw.openLink = uploadType === 'picture' ? `${uStore.fileCdn}${res.data.content.path}` : `${uStore.gitIoCdn}/${res.data.content.path}`
        uploadFileRaw.downLink = uploadType === 'picture' ? `${uStore.fileCdn}${res.data.content.path}` : `${uStore.gitIoCdn}/${res.data.content.path}`
        uploadType === 'picture' && imgPreList.push(`${uStore.fileCdn}${res.data.content.path}`)
        console.log("上传文件结果:", res, imgPreList)
      } else {
        ElMessage.error("上传失败:" + res.data.message)
        gitFileList.splice(gitFileList.indexOf(uploadFileRaw), 1)
      }
      upPropress.value = 1
      fileList.length = 0
    }).catch(error => {
      uploadFileRaw.sha = 'error'
      gitFileList.splice(gitFileList.indexOf(uploadFileRaw), 1)
      console.log("上传文件错误:", error);
      upPropress.value = 1
      fileList.length = 0
    })
  }
})

实际使用效果:

Vue中实现图片黏贴上传到服务器:功能分析和实现,HTML前端,vue.js,javascript,ecmascript

 

到了这里,关于Vue中实现图片黏贴上传到服务器:功能分析和实现的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包