Browse Source

切片上传

master
马远东 1 year ago
parent
commit
5a851b7502
  1. 136
      src/views/edutraining/courseinfo.vue
  2. 2
      vue.config.js

136
src/views/edutraining/courseinfo.vue

@ -1,4 +1,5 @@
<template>
<basic-container>
<avue-crud
:option="option"
@ -19,6 +20,8 @@
@size-change="sizeChange"
@refresh-change="refreshChange"
@on-load="onLoad"
:upload-before="uploadBefore"
:upload-after="uploadAfter"
>
<template slot="menuLeft">
<el-button
@ -55,7 +58,7 @@ import {
toDate,
} from "@/api/edutraining/courseinfo";
import { createLogger, mapGetters } from "vuex";
import axios from "axios";
export default {
props: {
courseId: {
@ -68,6 +71,15 @@ export default {
form: {},
query: {},
loading: true,
percentage: 0,
jdState: false,
colors: [
{ color: "#f56c6c", percentage: 20 },
{ color: "#e6a23c", percentage: 40 },
{ color: "#5cb87a", percentage: 60 },
{ color: "#1989fa", percentage: 80 },
{ color: "#6f7ad3", percentage: 100 },
],
page: {
pageSize: 10,
currentPage: 1,
@ -117,7 +129,7 @@ export default {
// listType: "picture-img",
dataType: "string",
fileType: "video", //img/video/audio
action: "/api/blade-resource/oss/endpoint/put-file",
action: "#",
propsHttp: {
res: "data",
url: "link",
@ -205,15 +217,27 @@ export default {
},
methods: {
rowSave(row, done, loading) {
console.log(this, "row");
row.courseId = this.courseId; //
// row = { ...row, courseId: this.$route.query.courseId };
add(row).then(
() => {
console.log(
this.option.column.find((res) => res.label == "视频地址"),
"筛选出来的"
);
this.option.column.find((res) => res.label == "视频地址").tip =
"请上传视频、音频文件(只能上传一个文件)";
console.log(
this.option.column.find((res) => res.label == "视频地址").tip
);
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!",
});
done();
},
(error) => {
@ -222,6 +246,111 @@ export default {
}
);
},
async uploadBefore(file, done, loading, column) {
let _this = this;
console.log(_this, "SS组件");
console.log(file, column);
console.log("上传前的方法");
const CHUNK_SIZE = 1 * 1024 * 1024; // 1MB
// const CHUNK_SIZE = 512 * 1024; // 1MB
const totalChunks = Math.ceil(file.size / CHUNK_SIZE); //
let uploadedChunks = 0; //
const overallStartTime = performance.now(); //
for (let index = 0; index < totalChunks; index++) {
const start = index * CHUNK_SIZE;
const end = Math.min(start + CHUNK_SIZE, file.size);
const blob = file.slice(start, end); //
const chunkFile = new File([blob], `${file.name}-${index}`, {
type: file.type,
}); //
const formData = new FormData();
formData.append("file", chunkFile);
formData.append("chunkNumber", index);
formData.append("totalChunks", totalChunks);
formData.append("fileName", file.name);
try {
const response = await axios.post(
"/api/blade-resource/oss/endpoint/chunk",
formData,
{
headers: {
"Content-Type": "multipart/form-data",
},
}
);
console.log(`Chunk ${index} uploaded successfully:`, response.data);
uploadedChunks++; //
//
const progressPercentage = (
(uploadedChunks / totalChunks) *
100
).toFixed(2);
console.log(`Upload progress: ${progressPercentage}%`);
this.$notify.info({
title: "进度",
message: `当前上传进度: ${progressPercentage}%`,
});
//
if (index === totalChunks - 1) {
const fileData = {
fileName: file.name,
totalChunks: totalChunks,
};
const Stresponse = await axios.post(
"/api/blade-resource/oss/endpoint/mergeFile",
fileData,
{
headers: {
"Content-Type": "application/json",
},
}
);
if (Stresponse.data.code === 200) {
const overallEndTime = performance.now(); //
const totalFunctionTime = (overallEndTime - overallStartTime) / 1000; //
column.tip = ``;
console.log(Stresponse.data, "合并请求成功");
_this.form.videoUrl =
Stresponse.data.data.domain + Stresponse.data.data.path; //
loading();
this.$message.success(
`上传成功:文件名:${file.name},文件大小${(
file.size /
(1024 * 1024)
).toFixed(2)} MB, 上传进度: ${progressPercentage}%,总耗时:${totalFunctionTime.toFixed(2)}`
);
} else {
loading();
console.error("合并请求失败", Stresponse.data);
this.$message.error("文件合并失败");
}
}
} catch (error) {
console.error(`Error uploading chunk ${index}:`, error);
this.$message.error("上传出错");
loading();
return; //
}
}
},
uploadAfter(res, done, loading, column) {
console.log(res, column);
done();
console.log("上传后的方法");
this.$message.success("上传后的方法");
},
rowUpdate(row, index, done, loading) {
update(row).then(
() => {
@ -344,4 +473,5 @@ export default {
};
</script>
<style></style>
<style>
</style>

2
vue.config.js

@ -28,6 +28,7 @@ module.exports = {
// 本地服务接口地址
// target: 'http://nps.scqtkj.com:51490/',
target: 'http://127.0.0.1:8081/',
// target: 'http://192.168.3.2:8081/',
//target: 'http://10.10.10.11:8088/',
//远程演示服务地址,可用于直接启动项目
//target: 'https://saber.bladex.vip/api',
@ -39,6 +40,7 @@ module.exports = {
'/': {
// 本地服务接口地址
target: 'http://127.0.0.1:8088/',
// target: 'http://192.168.3.2:8081/',
//target: 'http://10.10.10.11:8088/',
//远程演示服务地址,可用于直接启动项目
//target: 'https://saber.bladex.vip/api',

Loading…
Cancel
Save