VUE 实现element upload上传图片到阿里云
网络编程 2021-07-04 14:06www.168986.cn编程入门
这篇文章主要介绍了VUE 实现element upload上传图片到阿里云,具有很好的参考价值,希望对大家有所帮助。一起跟随长沙网络推广过来看看吧
安装依赖
pm install ali-oss
封装client
若是想减小打包后静态资源大小,可在index.html引入(然后在client.js里注释掉const OSS = require(‘ali-oss'))
<script src="http://gosspublic.alicdn./aliyun-oss-sdk-4.4.4.min.js"></script>
const OSS = require('ali-oss') export function client(data) { // 后端提供数据 return new OSS({ region: data.endpoint, // .aliyuncs. aessKeyId: data.aessKeyId, aessKeySecret: data.aessKeySecret, bucket: data.bucketName, endpoint: data.endpoint, secure: true }) }
然后,在vue页面引用,给client传入后台返回的阿里数据
结果如下图
1、HTML部分
<el-upload action="" :http-request="Upload" :data="Aliyun" :multiple="false" :show-file-list="true" list-type="picture-card" :on-preview="handlePictureCardPreview" :on-remove="handleRemove" :limit="5" > <i class="el-icon-plus" /> </el-upload> <el-dialog :visible.sync="dialogVisible"> <img width="100%" :src="dialogImageUrl" alt=""> </el-dialog> <p style="color: #999;">图片上传限制 1.最多5张; 2.最大1M</p>
2、JS部分
import { getAliyun, createOrder } from '@/api/order-management' import { client } from '@/utils/alioss' export default { name: 'Appeal', data() { return { dialogImageUrl: '', dialogVisible: false, Aliyun: {}, // 存签名信息 progress: 0, // 进度条 imgUrl: [] // 存上传后的图片url } }, created() { this.getAliyun() }, methods: { // 获取阿里云数据 async getAliyun() { const { data } = await getAliyun() this.Aliyun = data }, // 上传图片 Upload(file) { const that = this // 判断扩展名 const tmpt = file.file.name.lastIndexOf('.') const exname = file.file.name.substring(tmpt + 1) const names = ['jpg', 'jpeg', 'png'] if (names.indexOf(exname) < 0) { this.$message.error('不支持的格式!') return } if (file.size > 1024 1024) { this.$message.error('图片大小最大1M') return } async function multipartUpload() { // const fileName = that.name + file.file.uid const fileName = that.Aliyun.objectName + +'/' + Date.now() + '-' + file.file.name // fileName = aliyunConfig.objectName+'/'+Date.now()+'-'+file.name //所要上传的文件名拼接 (test/) // 定义唯一的文件名,打印出来的uid其实就是时间戳 // client 是第一步中的 client client(that.Aliyun).put(fileName, file.file, { progress: function(p) { // 获取进度条的值 console.log(p) that.progress = p 100 } }).then( result => { // 狼蚁网站SEO优化是如果对返回结果再进行处理,根据项目需要 // console.log(result) // that.imgUrl = 'http://' + result.bucket + '.' + that.Aliyun.endpoint + '/' + result.name that.dialogImageUrl = result.url that.imgUrl.push({ name: file.file.name, url: result.url }) console.log(that.imgUrl) }).catch(err => { console.log('err:', err) }) } multipartUpload() }, // 图片预览 handlePictureCardPreview(file) { this.dialogImageUrl = file.url this.dialogVisible = true }, // 删除图片 handleRemove(file, fileList) { // console.log(file) for (var i in this.imgUrl) { if (this.imgUrl[i].name === file.name) { this.imgUrl.splice(i, 1) } } } } } </script>
补充知识vue-cli项目中,配合element_ui来实现上传图片与视频到oss上。
<template> <div class="basicInfo"> <el-upload class="avatar-content" v-loading="fileLoading" aept="image/" drag action="https://zxcity-app.oss--hangzhou.aliyuncs." :show-file-list="false" :data="ossParams" :before-upload="checkParams" :on-progress="progress" :on-error="uploadErr" :on-suess="uploadSuess" :on-remove="fileListRemove" multiple > </el-upload> <div v-for="(item,index) in fileList" :key="index" class="imgDiv"> <img :src="item.imgUrl" alt=""> <p>{{item.progress}}</p> </div> </div> </template> <script> import axios from 'axios' export default { data () { return { form: { url: '' }, fileList: [], fileLoading: false, ossParams: { expireTime: '', key: '', dir: '' } } }, methods: { // 图片上传前检测参数变化 checkParams (file) { var _this = this var promise = new Promise((resolve, reject) => { axios.get('https://share.zxtest.izxcs./zxcity_restful/ws/oss/ossUpload', {}) .then(function (response) { var params = response.data _this.ossParams = params _this.ossParams.name = file.name _this.ossParams.OSSAessKeyId = params.aessid _this.ossParams.suess_action_status = '200' _this.ossParams.key = params.dir + '/' + _this.getUUID() var obj = { name: _this.ossParams.name, key: _this.ossParams.key, host: _this.ossParams.host, progress: 0, imgUrl: '' } _this.fileList.push(obj) // _this.fileLoading = true resolve() }) .catch(function (error) { console.log(error, '错误') reject(error) }) }) return promise }, // 上传中 progress (event, file, fileList) { console.log('上传中...') console.log(file) console.log(fileList) this.fileList.forEach((item, index) => { if (item.name === file.name) { item.progress = parseInt(file.percentage) } }) }, // 上传失败提示 uploadErr (res) { this.$message.error('上传出错!') }, // 上传成功后上传到file表 uploadSuess (response, file, fileList) { console.log('上传成功') this.fileList.forEach((item, index) => { if (item.name === file.name) { item.imgUrl = item.host + '/' + item.key item.progress = 100 } }) }, // 文件删除 fileListRemove (file, fileList) { this.form.url = '' }, // 随机名称 getUUID () { return `${this.str4()}${this.str4()}-${this.str4()}-${this.str4()}-${this.str4()}-${this.str4()}${this.str4()}${this.str4()}` }, str4 () { return (((1 + Math.random()) 0x10000) | 0).toString(16).substring(1) } } } </script> <style lang="less" scoped> .imgDiv{ display: block; float: left; width: 80px; height: 100px; border: 2px solid black; img{ display: block; width: 50px; height: 80px; } p{ font-size: 14px; text-align: center; } } </style>
以上这篇VUE 实现element upload上传图片到阿里云就是长沙网络推广分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持狼蚁SEO。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程