gpt4 book ai didi

javascript - Dropzone block 上传到 Azure 存储

转载 作者:行者123 更新时间:2023-11-29 20:48:27 28 4
gpt4 key购买 nike

我正在尝试使用 dropzone 通过 SAS(共享访问签名)将大文件直接上传到 Azure 存储。这记录在 Azure 端:https://learn.microsoft.com/en-us/rest/api/storageservices/Put-Block

所以我必须获取 blockId(一个 Base64 字符串,用于标识我正在发送的 block )并将其放入发送该 block 的请求的 url 中。

Dropzone 现在支持分块,所以我决定使用它。不幸的是,它的实现很难找到。

我可以更改处理事件中的 url,但这是针对每个文件的,我无法从中获取 block 数据。

我可以使用参数在表单数据中发送 blockId,但似乎无法更改它的 url。

是否可以将 blockId 添加到我的 url 中?还是我必须先将它发送到我的服务器并从那里上传?谢谢。

$("#videoSection").dropzone({
params: function (files, xhr, chunk) {
console.log(chunk);

xhr.setRequestHeader('x-ms-blob-type', 'BlockBlob');

//I can get the blockId from the chunk here

//this.options.url.replace("test") //doesn't work
//xhr.open(this.options.method, this.options.url.replace("test"), true); //doesn't work

return {"url": "test"}; //this returns form-data
},
url: "Create",
method: "PUT",
//headers: { "x-ms-blob-type": "BlockBlob" },
chunking: true,
chunkSize: 4000000,
forceChunking: true,
retryChunks: true,
retryChunksLimit: 3,
autoProcessQueue: false,
acceptedFiles: "video/*",
maxFiles: 1,
maxFilesize: 3000,
previewTemplate: $("#videoTemplate").html(),
dictDefaultMessage: "Drop Video Here",
init: function () {
this.on("processing", function (file) {
var blockId = 1;

@*this.options.url = "@(Config.Value.StoragePrefix)/@(user.Company.StorageName)/inspections/@Model.InspectionData.Inspection.Id/videos/"
+ file.name + "@Html.Raw(Model.SharedAccessSignature + "&comp=block&blockid=")" + blockId;*@


var progressBar = $(file.previewElement).find(".dropzoneProgressBar");
progressBar.show();
});
this.on("chunksUploaded", function (file, done) {
$.ajax({
type: "PUT",
url: "@(Config.Value.StoragePrefix)/@(user.Company.StorageName)/inspections/@Model.InspectionData.Inspection.Id/videos/"
+ file.name + "@Html.Raw(Model.SharedAccessSignature + "&comp=blocklist")",
success: function (data) {
done();
},
error: function (e) {
toastr.error(e);
console.log(e);
}
});
});
this.on("uploadprogress", function (file, progress, bytesSent) {
var progressBar = $(file.previewElement).find(".dropzoneProgressBar");
progress = bytesSent / file.size * 100;
progressBar.width(progress + "%");
});
this.on("success", function (file, response) {
var successCheckmark = $(file.previewElement).find(".dropSuccess");
successCheckmark.toggle();
var progressBar = $(file.previewElement).find(".dropzoneProgressBar");
progressBar.css("background-color", "green");
});
}
});

最佳答案

此行有问题 this.options.url.replace("test")//不起作用。它应该是 this.options.url = this.options.url.replace("test", "newValue")//这应该有效。我正在使用类似的方法。问题在于,一旦 XmlHttpRequest 打开,就会调用 params 回调,因此您需要在开始处理文件之前设置第一个 block 的 url,并在 params 您需要为要发送的下一个 block 设置 url(使用 chunk.index + 1 用于基于零的索引)。我不确定如果您启用了 parallelChunkUploads 这是否可行 - 我没有测试要处理的第一个 block 是否是第一个 block 。如果您需要更多信息,请告诉我。

关于javascript - Dropzone block 上传到 Azure 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53229461/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com