0

我想在页面中放置一个按钮,当用户单击该按钮时,我想将 azure blob 下载到下载文件夹中。

  1. 我生成 blob 链接 url:

    var downloadLink = blobService.getUrl('mycontainer', 'myblob', 'SAS_TOKEN');

  2. 获得此网址后,我将使用此解决方案下载:

    var link = document.createElement("a");
    link.download = name;
    link.href = url;
    document.body.appendChild(link);
    link.click();
    document.body.removeChild(link);
    

我在 S3 中使用了相同的方法,文件可以在同一个浏览器中下载到下载文件夹中,但是对于 Azure,当我使用此解决方案时,它只是打开一个新选项卡并在浏览器中显示内容。

谁能帮忙看看这是为什么?如何下载文件而不是在浏览器中显示内容?

生成的网址是:

https://myBucket.blob.core.windows.net/mycontainer/1000/rawEvents.json?se=2022-04-20T23%3A59%3A59Z&sp=rwdlacup&sv=2018-03-28&ss=b&srt=sco&sig=EzsjwqKfYmwwUo2n1ySkCBAsTfW35ic8M8M

如果单击此 url,它也可以读取内容。

4

1 回答 1

2

您需要确保Content-TypeContent-Disposition标头具有触发浏览器下载文件的值。尤其是内容处置很重要。

Content-Type: application/octet-stream
Content-Disposition: attachment

您可以在 blob 本身上设置内容处置

        var blob = container.GetBlobReference(userFileName);
        blob.Properties.ContentDisposition = "attachment";
        blob.SetProperties();

将其添加到您的 SAS 令牌中(另请参阅相应的博客文章)。

        CloudStorageAccount storageAccount = CloudStorageAccount.Parse(ConfigurationManager.AppSettings["StorageConnectionString"]);
        CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
        CloudBlobContainer container = blobClient.GetContainerReference("videos");
        string userFileName = service.FirstName + service.LastName + "Video.mp4";
        CloudBlockBlob blob = container.GetBlockBlobReference(userFileName);
        SharedAccessBlobPolicy policy = new SharedAccessBlobPolicy()
        {
            Permissions = SharedAccessBlobPermissions.Read,
            SharedAccessExpiryTime = DateTime.UtcNow.AddHours(1)
        };
        SharedAccessBlobHeaders blobHeaders = new SharedAccessBlobHeaders()
        {
            ContentDisposition = "attachment; filename=" + userFileName
        };
        string sasToken = blob.GetSharedAccessSignature(policy, blobHeaders);
        var sasUrl = blob.Uri.AbsoluteUri + sasToken;//This is the URL you will use. It will force the user to download the video.
于 2020-04-12T08:39:09.430 回答