我正在尝试使用dropzone通过SAS(共享访问签名)将大文件直接上传到Azure存储。在Azure方面记录在这里:https://docs.microsoft.com/en-us/rest/api/storageservices/Put-Block
因此,我必须获取blockId(标识我正在发送的块的Base64字符串),并将其放入发送该块的请求的url中。
Dropzone现在支持分块,所以我决定使用它。不幸的是,很难找到它的实现。
我可以在处理事件中更改url,但这是针对每个文件的,我无法从中获取块数据。
我可以使用params在表单数据中发送blockId,但似乎无法从中更改url。
是否可以将blockId添加到我的网址?还是我必须先将其发送到服务器并从那里上传?谢谢。
$("#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");
});
}
});
答案 0 :(得分:2)
此行this.options.url.replace("test") //doesn't work
有问题。它应该是this.options.url = this.options.url.replace("test", "newValue") //this should work
。我正在使用类似的方法。问题是,params
打开后将调用XmlHttpRequest
回调,因此您需要在开始处理文件之前为第一个块设置url,而在params
中则需要设置要发送的下一个块的url(将chunk.index + 1
用于基于零的索引)。如果您启用了parallelChunkUploads
,我不确定是否可以使用-我尚未测试要处理的第一个块是否是第一个。让我知道您是否需要更多信息。