vue2前端阿里云oss服务端签名直传

官方地址:如何进行服务端签名直传_对象存储(OSS)-阿里云帮助中心

前端具体实现:

html 复制代码
<div v-if="!uploadVideoFlag">
    <el-button size="small" class="upload-btn" icon="el-icon-loading">
        上传中
    </el-button>
</div>
<div v-if="uploadVideoFlag">
    <el-upload
        :http-request="uploadVideo"
        action="#"
        :limit="1"
        :file-list="fileVideoList"
        accept=".mp4"
        >
            <el-button size="small" type="primary" class="upload-btn">
                上传视频
            </el-button>
            <div slot="tip" class="el-upload__tip">只能上传 MP4 文件</div>
    </el-upload>
</div>
javascript 复制代码
// 上传视频
    uploadVideo(file) {
      var video = file.file.name.substring(file.file.name.lastIndexOf(".") + 1);
      const suffix = video === "mp4";
      if (!suffix) {
        this.form.chapterUrl = undefined;
        this.fileVideoList = [];
        this.$message.warning("必须上传 MP4 格式的视频!");
        return;
      }
      generatePresignedUrlApi().then((res) => {
        this.uploadVideoFlag = false;
        let keyFileName = res.data.dir + this.getFileNameUUID() + "." + video;
        let formData = new FormData();
        formData.append("success_action_status", "200"); // 指定成功上传时,服务端返回状态码200,默认返回204。
        formData.append("policy", res.data.policy);
        formData.append("signature", res.data.signature);
        formData.append("OSSAccessKeyId", res.data.OSSAccessKeyId);
        formData.append("key", keyFileName); // 文件名
        formData.append("file", file.file); // file必须为最后一个表单域
        const param = {
          method: "POST",
          body: formData,
        };
        fetch(res.data.host, param)
          .then((data) => {
            this.uploadVideoFlag = true;
            this.$message.success("上传成功");
            // 视频数组:
            this.fileVideoList.length = 1;
            // 视频地址:
            this.form.chapterUrl = res.data.host + keyFileName;
          })
          .catch((error) => {
            console.error("Error:", error);
          });
      });
    },

    // 唯一uuid
    getFileNameUUID() {
      function rx() {
        return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
      }
      return `${+new Date()}${rx()}${rx()}`;
    },

generatePresignedUrlApi是由后端提供的接口 来获取密钥

相关推荐
发现一只大呆瓜2 小时前
深度解密 Rollup 插件开发:核心钩子函数全生命周期图鉴
前端·vite
java_nn2 小时前
一文了解前端技术
前端
发现一只大呆瓜2 小时前
深度解析 Rollup 配置与 Vite 生产构建流程
前端·vite
小码哥_常3 小时前
安卓黑科技:让手机成为你的“跌倒保镖”
前端
小李子呢02114 小时前
前端八股Vue---Vue2和Vue3的区别,set up的用法
前端·javascript·vue.js
m0_647057964 小时前
Harness Engineering 实践指南
前端
JJay.4 小时前
Android BLE 稳定连接的关键,不是扫描,而是 GATT 操作队列
android·服务器·前端
星空椰4 小时前
JavaScript 进阶基础:函数、作用域与常用技巧总结
开发语言·前端·javascript
奔跑的呱呱牛4 小时前
@giszhc/vue-page-motion:Vue3 路由动画怎么做才“丝滑”?(附在线示例)
前端·javascript·vue.js
ThridTianFuStreet小貂蝉5 小时前
面试题4:讲一讲HTML5、CSS3新特性
前端·css3·html5