多个 Azure 存储与 Rails 6 应用程序集成

问题描述 投票:0回答:1

我已将 Azure Active Storage 用于使用 Rails v6 开发的应用程序上上传的所有用户文件。工作得很好。

现在我想将应用程序上上传的文件复制到另一个 Azure 存储帐户。我该如何采用这种方法。任何帮助将不胜感激。

ruby-on-rails rubygems rails-activestorage
1个回答
0
投票

您可以在后端使用 https://github.com/Azure/azure-storage-ruby

我正在将文件从一个容器复制到同一存储帐户中的另一个容器,这样我就可以执行以下操作:

blob_service.copy_blob(azure_storage_container_name, destination_blob, container_name, blob.name)

但还有:

blob_service.copy_blob_from_uri(azure_storage_container_name, blob.name, source_uri)

我正在考虑是否我们在不同的帐户之间进行操作。

© www.soinside.com 2019 - 2024. All rights reserved.