使用iView Upload 组件实现手动上传图片的示例代码
程序员文章站
2022-04-09 13:44:04
在过去,浏览器是不允许我们读取本地的文件,包括图片。因此,当我们需要预览一个图片的时候,往往先将它传送到服务端,然后服务端返回一个访问 url 地址,达到预览图片的功能。如...
在过去,浏览器是不允许我们读取本地的文件,包括图片。因此,当我们需要预览一个图片的时候,往往先将它传送到服务端,然后服务端返回一个访问 url 地址,达到预览图片的功能。如今,随着标准不断的改善,javascript 里的 api 越来越多,我们可以通过直接读取本地文件的方式来加载我们想要看到的文本或者图片,一定程度上减少了服务端的压力。
upload 组件参考文档:
文档提供的参考代码:
<template> <div class="demo-upload-list" v-for="item in uploadlist"> <template v-if="item.status === 'finished'"> ![](item.url) <div class="demo-upload-list-cover"> <icon type="ios-eye-outline" @click.native="handleview(item.name)"></icon> <icon type="ios-trash-outline" @click.native="handleremove(item)"></icon> </div> </template> <template v-else> <progress v-if="item.showprogress" :percent="item.percentage" hide-info></progress> </template> </div> <upload ref="upload" :show-upload-list="false" :default-file-list="defaultlist" :on-success="handlesuccess" :format="['jpg','jpeg','png']" :max-size="2048" :on-format-error="handleformaterror" :on-exceeded-size="handlemaxsize" :before-upload="handlebeforeupload" multiple type="drag" action="//jsonplaceholder.typicode.com/posts/" style="display: inline-block;width:58px;"> <div style="width: 58px;height:58px;line-height: 58px;"> <icon type="camera" size="20"></icon> </div> </upload> <modal title="查看图片" v-model="visible"> ![]('https://o5wwk8baw.qnssl.com/' + imgname + '/large') </modal> </template> <script> export default { data () { return { defaultlist: [ { 'name': 'a42bdcc1178e62b4694c830f028db5c0', 'url': 'https://o5wwk8baw.qnssl.com/a42bdcc1178e62b4694c830f028db5c0/avatar' }, { 'name': 'bc7521e033abdd1e92222d733590f104', 'url': 'https://o5wwk8baw.qnssl.com/bc7521e033abdd1e92222d733590f104/avatar' } ], imgname: '', visible: false, uploadlist: [] } }, methods: { handleview (name) { this.imgname = name; this.visible = true; }, handleremove (file) { // 从 upload 实例删除数据 const filelist = this.$refs.upload.filelist; this.$refs.upload.filelist.splice(filelist.indexof(file), 1); }, handlesuccess (res, file) { // 因为上传过程为实例,这里模拟添加 url file.url = 'https://o5wwk8baw.qnssl.com/7eb99afb9d5f317c912f08b5212fd69a/avatar'; file.name = '7eb99afb9d5f317c912f08b5212fd69a'; }, handleformaterror (file) { this.$notice.warning({ title: '文件格式不正确', desc: '文件 ' + file.name + ' 格式不正确,请上传 jpg 或 png 格式的图片。' }); }, handlemaxsize (file) { this.$notice.warning({ title: '超出文件大小限制', desc: '文件 ' + file.name + ' 太大,不能超过 2m。' }); }, handlebeforeupload () { const check = this.uploadlist.length < 5; if (!check) { this.$notice.warning({ title: '最多只能上传 5 张图片。' }); } return check; } }, mounted () { this.uploadlist = this.$refs.upload.filelist; } } </script> <style> .demo-upload-list{ display: inline-block; width: 60px; height: 60px; text-align: center; line-height: 60px; border: 1px solid transparent; border-radius: 4px; overflow: hidden; background: #fff; position: relative; box-shadow: 0 1px 1px rgba(0,0,0,.2); margin-right: 4px; } .demo-upload-list img{ width: 100%; height: 100%; } .demo-upload-list-cover{ display: none; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.6); } .demo-upload-list:hover .demo-upload-list-cover{ display: block; } .demo-upload-list-cover i{ color: #fff; font-size: 20px; cursor: pointer; margin: 0 2px; } </style>
自己实现手动上传:
<template> <div> <div class="demo-upload-list" v-for="item in uploadlist"> ![](item.url) <div class="demo-upload-list-cover"> <icon type="ios-trash-outline" @click.native="handleremove(item)"></icon> </div> </div> <upload ref="upload" :show-upload-list="false" :format="['jpg','jpeg','png']" :max-size="2048" :before-upload="handlebeforeupload" :on-format-error="handleformaterror" :on-exceeded-size="handlemaxsize" type="drag" action="//jsonplaceholder.typicode.com/posts/" style="display: inline-block;width:58px;"> <div style="width: 58px;height:58px;line-height: 58px;"> <icon type="camera" size="20"></icon> </div> </upload> </div> </template> <script> export default { methods: { data(){ return { uploadlist: [] } }, handlebeforeupload(file) { // 创建一个 filereader 对象 let reader = new filereader() // readasdataurl 方法用于读取指定 blob 或 file 的内容 // 当读操作完成,readystate 变为 done,loadend 被触发,此时 result 属性包含数据:url(以 base64 编码的字符串表示文件的数据) // 读取文件作为 url 可访问地址 reader.readasdataurl(file) const _this = this reader.onloadend = function (e) { file.url = reader.result _this.uploadlist.push(file) } }, handleremove(file) { this.uploadlist.splice(this.uploadlist.indexof(file), 1) }, handleformaterror(file) { this.$notice.warning({ title: '文件格式不正确', desc: '文件 ' + file.name + ' 格式不正确,请上传 jpg 或 png 格式的图片。' }) }, handlemaxsize(file) { this.$notice.warning({ title: '超出文件大小限制', desc: '文件 ' + file.name + ' 太大,不能超过 2m。' }) } } } </script> <style scoped> .demo-upload-list { display: inline-block; width: 60px; height: 60px; text-align: center; line-height: 60px; border: 1px solid transparent; border-radius: 4px; overflow: hidden; background: #fff; position: relative; box-shadow: 0 1px 1px rgba(0, 0, 0, .2); margin-right: 4px; } .demo-upload-list img { width: 100%; height: 100%; } .demo-upload-list-cover { display: none; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, .6); } .demo-upload-list:hover .demo-upload-list-cover { display: block; } .demo-upload-list-cover i { color: #fff; font-size: 20px; cursor: pointer; margin: 0 2px; } .ivu-icon { line-height: 58px; } </style>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 解决vue单页面修改样式无法覆盖问题
下一篇: vue3.0中的双向数据绑定方法及优缺点