富贵资源网 Design By www.hznty.com
一、思路,从后台获取七牛token,上传图片到七牛,获取返回图片路径放入el-upload。
二、代码。
<el-input v-model="listVideoQuery.orgLogo" @change="orgLogoChange"></el-input> <el-col :span="10" class="mt10"> <el-upload class="upload-demo" :file-list="fileList2" :action="domain" :before-upload="beforeAvatarUpload" :data="form" :on-remove="handleRemoveQrgLogo" :on-success="handleAvatarSuccess" list-type="picture" :limit="1" multiple> <el-button size="small" type="primary" @click="upPicName='orgLogo'">点击上传</el-button> <div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div> </el-upload> </el-col> export default { name: 'edit', data() { return { upPicName:'', //上传图片名字 fileList1:[], form: {}, //上传到七牛的token bucketQuery:{ bucket: 'website-image' //这是我用来获取token传给后台的字段 }, domain: 'http://upload.qiniu.com', // 七牛云的上传地址 qiniuaddr: 'pd6rnk9ck.bkt.clouddn.com' // 这是七牛云空间的外链默认域名 } }, methods: { // 上传图片规格 beforeAvatarUpload (file) { const isJPG = file.type === 'image/jpeg' || file.type === 'image/png' const isLt2M = file.size / 1024 / 1024 < 5 if (!isJPG) { return this.$message.error('上传文件只能是 JPG或PNG 格式!') } if (!isLt2M) { return this.$message.error('上传图片大小不能超过 5MB!') } return upQiniu(this.bucketQuery).then(res => { this.form = { token:res.data } }) }, //图片改变及上传 bannerPicChange(value) { this.fileList1 = [] this.fileList1.push({ name: value, url: value }) }, handleBannerPicRemove(file, fileList) { this.fileList1 = [] this.listVideoQuery.orgLogo= '' }, handleAvatarSuccess(response) { if(this.upPicName =='orgLogo'){ this.fileList1 = [] this.fileList1.push({ name: 'http://' + this.qiniuaddr + '/' + response.key, url: 'http://' + this.qiniuaddr + '/' + response.key }) this.listVideoQuery.orgLogo= 'http://' + this.qiniuaddr + '/' + response.key } this.$message({ type: 'success', message: '上传成功!', duration: 2000 }) }, } }
三、效果。
总结
以上所述是小编给大家介绍的vue中el-upload上传图片到七牛的示例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。