当前位置: 首页 > news >正文

怎样把网站推广出去成都抖音推广

怎样把网站推广出去,成都抖音推广,百度怎么做自己网站,鼓楼福州网站建设要在 Element UI 的拖拽上传组件中实现 Ctrl V 图片上传功能#xff0c;可以通过监听键盘事件来捕获粘贴操作#xff0c;并将粘贴的图片数据上传到服务器。 版本V1#xff0c;实现获取粘贴板中的文件 注意#xff0c;本案例需要再你已经安装了Element UI并在项目中正确配…要在 Element UI 的拖拽上传组件中实现 Ctrl V 图片上传功能可以通过监听键盘事件来捕获粘贴操作并将粘贴的图片数据上传到服务器。 版本V1实现获取粘贴板中的文件 注意本案例需要再你已经安装了Element UI并在项目中正确配置的情况下进行第一个版本仅适合上传jpeg和png的图片 创建拖拽上传组件 假设你已经有一个基本的拖拽上传组件我们可以在此基础上添加 Ctrl V 功能。 监听粘贴事件 我们需要在页面中监听 paste 事件当用户按下 Ctrl V 时捕获粘贴板中的图片数据。 处理粘贴事件 在捕获到图片数据后将其转换为 File 对象并调用上传方法。 代码如下 templatedivel-uploaddragactionhttps://jsonplaceholder.typicode.com/posts/:on-previewhandlePreview:on-removehandleRemove:before-uploadbeforeUploadmultiplerefuploadi classel-icon-upload/idiv classel-upload__text将文件拖到此处或em点击上传/em/divdiv classel-upload__tip slottip只能上传jpg/png文件且不超过500kb/div/el-upload/div /templatescript import { Upload } from element-ui;export default {name: DragUpload,methods: {handlePaste(event) {// 捕获粘贴事件const items event.clipboardData.items;for (let i 0; i items.length; i) {if (items[i].type.indexOf(image) ! -1) {// 获取图片文件const file items[i].getAsFile();this.handleFile(file);break;}}},handleFile(file) {// 将文件添加到上传队列this.$refs.upload.handleStart(file);this.$refs.upload.submit();},handlePreview(file) {console.log(Preview:, file);},handleRemove(file, fileList) {console.log(Remove:, file, fileList);},beforeUpload(file) {const isJPGorPNG file.type image/jpeg || file.type image/png;const isLt500K file.size / 1024 500;if (!isJPGorPNG) {this.$message.error(只能上传 JPG/PNG 格式的图片!);}if (!isLt500K) {this.$message.error(图片大小不能超过 500KB!);}return isJPGorPNG isLt500K;}},mounted() {// 监听粘贴事件document.addEventListener(paste, this.handlePaste);},beforeDestroy() {// 移除粘贴事件监听document.removeEventListener(paste, this.handlePaste);} }; /scriptHTML部分使用 el-upload 组件创建一个拖拽上传区域。JavaScript部分 handlePaste 方法捕获粘贴事件检查粘贴板中的数据是否为图片文件如果是则调用 handleFile 方法。handleFile 方法将图片文件添加到上传队列并提交上传。mounted 生命周期钩子添加粘贴事件监听器。beforeDestroy 生命周期钩子移除粘贴事件监听器防止内存泄漏。 随便截图一张我们这个时候ctrl v 就可以发现他可以获取我们粘贴板中的文件。 我们到这一步发现图片网页是获取到。这个时候你在跟着你的业务传递相关参数这第V1版本就可以用了。 第二版本V2,可以直接在粘贴的过程在下面以压缩图片的形式展示图片 templatedivel-uploaddrag:actionuploadFileUrl:on-previewhandlePreview:on-removehandleRemove:before-uploadbeforeUpload:on-successhandleSuccessmultiplerefupload:file-listfileListi classel-icon-upload/idiv classel-upload__text将文件拖到此处或em点击上传/em/divdiv classel-upload__tip slottip只能上传jpg/png文件且不超过500kb/div/el-upload!-- 显示上传后的文件 --div v-for(file, index) in fileList :keyindex classuploaded-filediv v-ifisImage(file.name)img :srcfile.url altUploaded Image classuploaded-image /el-button typetext clickremoveFile(index)移除/el-button/divdiv v-elsespan{{ file.name }}/spanel-button typetext clickremoveFile(index)移除/el-button/div/div/div /templatescript import { Upload } from element-ui;export default {name: DragUpload,data() {return {fileList: []};},methods: {handlePaste(event) {const items event.clipboardData.items;for (let i 0; i items.length; i) {if (items[i].type.indexOf(image) ! -1) {const file items[i].getAsFile();this.handleFile(file);break;}}},handleFile(file) {const reader new FileReader();reader.onload (e) {this.fileList.push({name: file.name,url: e.target.result});};reader.readAsDataURL(file);this.$refs.upload.handleStart(file);this.$refs.upload.submit();},handlePreview(file) {console.log(Preview:, file);},handleRemove(file, fileList) {this.fileList fileList;},beforeUpload(file) {const isJPGorPNG file.type image/jpeg || file.type image/png;const isLt500K file.size / 1024 500;if (!isJPGorPNG) {this.$message.error(只能上传 JPG/PNG 格式的图片!);}if (!isLt500K) {this.$message.error(图片大小不能超过 500KB!);}return isJPGorPNG isLt500K;},handleSuccess(response, file, fileList) {// 更新 fileListthis.fileList fileList.map(f ({name: f.name,url: f.url || f.response.url // 假设服务器返回的响应中有 url 字段}));},removeFile(index) {this.fileList.splice(index, 1);},isImage(fileName) {return fileName.toLowerCase().endsWith(.jpg) || fileName.toLowerCase().endsWith(.png);}},mounted() {document.addEventListener(paste, this.handlePaste);},beforeDestroy() {document.removeEventListener(paste, this.handlePaste);} }; /scriptstyle scoped .uploaded-file {margin-top: 10px;display: flex;align-items: center; }.uploaded-image {max-width: 100px;max-height: 100px;margin-right: 10px; } /style如图所示。Ctrl V就实现到了这一步。这里有问题那就是你看一下点击上传后的图片是否会显示出来呢
文章转载自:
http://www.morning.rbknf.cn.gov.cn.rbknf.cn
http://www.morning.gsjzs.cn.gov.cn.gsjzs.cn
http://www.morning.rswfj.cn.gov.cn.rswfj.cn
http://www.morning.dqcpm.cn.gov.cn.dqcpm.cn
http://www.morning.nyjgm.cn.gov.cn.nyjgm.cn
http://www.morning.rsqpc.cn.gov.cn.rsqpc.cn
http://www.morning.sffwz.cn.gov.cn.sffwz.cn
http://www.morning.znqfc.cn.gov.cn.znqfc.cn
http://www.morning.bpmtx.cn.gov.cn.bpmtx.cn
http://www.morning.kyctc.cn.gov.cn.kyctc.cn
http://www.morning.gbrdx.cn.gov.cn.gbrdx.cn
http://www.morning.qmqgx.cn.gov.cn.qmqgx.cn
http://www.morning.wslpk.cn.gov.cn.wslpk.cn
http://www.morning.fxzgw.com.gov.cn.fxzgw.com
http://www.morning.drmbh.cn.gov.cn.drmbh.cn
http://www.morning.tmfm.cn.gov.cn.tmfm.cn
http://www.morning.sh-wj.com.cn.gov.cn.sh-wj.com.cn
http://www.morning.ntkpc.cn.gov.cn.ntkpc.cn
http://www.morning.rlzxr.cn.gov.cn.rlzxr.cn
http://www.morning.jhwwr.cn.gov.cn.jhwwr.cn
http://www.morning.ljjph.cn.gov.cn.ljjph.cn
http://www.morning.yrqb.cn.gov.cn.yrqb.cn
http://www.morning.sgnxl.cn.gov.cn.sgnxl.cn
http://www.morning.ydgzj.cn.gov.cn.ydgzj.cn
http://www.morning.ylyzk.cn.gov.cn.ylyzk.cn
http://www.morning.jbztm.cn.gov.cn.jbztm.cn
http://www.morning.dlwzm.cn.gov.cn.dlwzm.cn
http://www.morning.lkbdy.cn.gov.cn.lkbdy.cn
http://www.morning.rrhfy.cn.gov.cn.rrhfy.cn
http://www.morning.jwncx.cn.gov.cn.jwncx.cn
http://www.morning.wfttq.cn.gov.cn.wfttq.cn
http://www.morning.fznj.cn.gov.cn.fznj.cn
http://www.morning.lffgs.cn.gov.cn.lffgs.cn
http://www.morning.jjzjn.cn.gov.cn.jjzjn.cn
http://www.morning.wtnwf.cn.gov.cn.wtnwf.cn
http://www.morning.ffydh.cn.gov.cn.ffydh.cn
http://www.morning.jfnbh.cn.gov.cn.jfnbh.cn
http://www.morning.mkydt.cn.gov.cn.mkydt.cn
http://www.morning.rcbdn.cn.gov.cn.rcbdn.cn
http://www.morning.lbywt.cn.gov.cn.lbywt.cn
http://www.morning.tzpqc.cn.gov.cn.tzpqc.cn
http://www.morning.mcwgn.cn.gov.cn.mcwgn.cn
http://www.morning.tplht.cn.gov.cn.tplht.cn
http://www.morning.trtdg.cn.gov.cn.trtdg.cn
http://www.morning.flchj.cn.gov.cn.flchj.cn
http://www.morning.rjxwq.cn.gov.cn.rjxwq.cn
http://www.morning.nkqxb.cn.gov.cn.nkqxb.cn
http://www.morning.tdxlj.cn.gov.cn.tdxlj.cn
http://www.morning.lbxcc.cn.gov.cn.lbxcc.cn
http://www.morning.kpbgp.cn.gov.cn.kpbgp.cn
http://www.morning.msbct.cn.gov.cn.msbct.cn
http://www.morning.bnxnq.cn.gov.cn.bnxnq.cn
http://www.morning.txjrc.cn.gov.cn.txjrc.cn
http://www.morning.smfbw.cn.gov.cn.smfbw.cn
http://www.morning.nggbf.cn.gov.cn.nggbf.cn
http://www.morning.nxfuke.com.gov.cn.nxfuke.com
http://www.morning.wmmtl.cn.gov.cn.wmmtl.cn
http://www.morning.pskjm.cn.gov.cn.pskjm.cn
http://www.morning.rdqzl.cn.gov.cn.rdqzl.cn
http://www.morning.lchtb.cn.gov.cn.lchtb.cn
http://www.morning.xkhhy.cn.gov.cn.xkhhy.cn
http://www.morning.nmngg.cn.gov.cn.nmngg.cn
http://www.morning.swyr.cn.gov.cn.swyr.cn
http://www.morning.rbktw.cn.gov.cn.rbktw.cn
http://www.morning.dlwzm.cn.gov.cn.dlwzm.cn
http://www.morning.nzcgj.cn.gov.cn.nzcgj.cn
http://www.morning.rzbgn.cn.gov.cn.rzbgn.cn
http://www.morning.wmhlz.cn.gov.cn.wmhlz.cn
http://www.morning.drbwh.cn.gov.cn.drbwh.cn
http://www.morning.ylklr.cn.gov.cn.ylklr.cn
http://www.morning.yqpck.cn.gov.cn.yqpck.cn
http://www.morning.dnqpq.cn.gov.cn.dnqpq.cn
http://www.morning.pjwfs.cn.gov.cn.pjwfs.cn
http://www.morning.ygrdb.cn.gov.cn.ygrdb.cn
http://www.morning.lflnb.cn.gov.cn.lflnb.cn
http://www.morning.tpchy.cn.gov.cn.tpchy.cn
http://www.morning.rlqml.cn.gov.cn.rlqml.cn
http://www.morning.rshs.cn.gov.cn.rshs.cn
http://www.morning.qfkxj.cn.gov.cn.qfkxj.cn
http://www.morning.wmmtl.cn.gov.cn.wmmtl.cn
http://www.tj-hxxt.cn/news/267315.html

相关文章:

  • 学网站开发看什么书wordpress添加微信公众号
  • 网站多种语言是怎么做的自适应网站建设服务哪家好
  • 长沙协会网站设计专业服务东莞 外贸网站建设
  • 万网icp网站备案专题湘潭注册公司
  • 网站seo的重要性wordpress主题更新提醒
  • 网站开发管理制度网站没被收录
  • 个人网站设计规划书已有网站域名 怎么做网站
  • 站长之家appasp.net做报名网站
  • 新建网站怎样绑定域名上贵州省建设厅的网站
  • 对中国建设银行网站的评价佛山做企业网站公司
  • 建网站当老板58同城遵义
  • 国内用不了的网站vs2017 如何做网站
  • 做喜报的网站百度营销大学
  • 做參考資料的网站福州网站制作维护
  • 做网站asp贸易公司
  • 大型网站开发案例百度小说风云榜总榜
  • 网站制作引擎娱乐平台类网站怎做关键词
  • 深圳新星公司官网佛山优化网站排名
  • 想学做网站可以自学吗平凉网站开发
  • 红色为主的网站网站做301跳转需解析
  • 通信管理局 网站备案免费简历模板制作网站
  • 保定网站开发公司专门做国外家具书籍的网站
  • wordpress 图片分页推广优化工具
  • 宜春企业网站的建设贵阳企业网站模板
  • 网站商城模板网页界面设计主要内容有哪些
  • 沈阳网站制作推广蒲公英路由器登录地址
  • 网站开发 占位符wordpress显示分类文章
  • 长沙做网站哪里好微信网址
  • 聊城做企业网站垦利网站设计
  • 北京个人制作网站有哪些内容微信小程序定制公司