ActiveStorage 是 Rails 提供的一个功能强大的文件上传和存储解决方案,它支持使用缓存来提高文件的访问速度。本文将介绍如何在 Rails 项目中使用 Google Cloud 作为 ActiveStorage 的缓存存储。
首先,你需要在你的 Rails 项目中安装并配置 'google-cloud-storage' gem。在你的 Gemfile 文件中添加以下行:
gem 'google-cloud-storage'
然后运行 bundle install
命令来安装 gem。
接下来,你需要为你的 Rails 项目配置 Google Cloud Storage。你可以在 Google Cloud 控制台中创建一个新的存储桶,并获得一个用于访问存储桶的凭据文件(通常是一个 JSON 文件)。
在 Rails 项目的 config/storage.yml
文件中,添加以下配置:
google:
service: GCS
project: your_project_id
credentials: /path/to/your/credentials.json
bucket: your_bucket_name
确保将 your_project_id
替换为你的 Google Cloud 项目 ID,/path/to/your/credentials.json
替换为你的凭据文件路径,your_bucket_name
替换为你的存储桶名称。
然后,在 config/environments/production.rb
文件中,添加以下配置:
config.active_storage.service = :google
这样,你就配置好了 Google Cloud Storage 作为 ActiveStorage 的缓存存储。
接下来,你可以在你的 Rails 项目中使用 ActiveStorage 来上传和访问文件。下面是一些示例代码:
在你的模型中,你需要使用 has_one_attached
方法来声明一个附加文件:
class User < ApplicationRecord
has_one_attached :avatar
end
在你的控制器中,你可以使用 attach
方法来上传文件:
class UsersController < ApplicationController
def update_avatar
@user = User.find(params[:id])
@user.avatar.attach(params[:avatar])
redirect_to @user
end
end
在你的视图中,你可以使用 file_field
方法来渲染一个文件上传字段:
<%= form_with(model: @user, url: update_avatar_path(@user), method: :patch) do |f| %>
<%= f.file_field :avatar %>
<%= f.submit 'Upload' %>
<% end %>
在你的视图中,你可以使用 url_for
方法来获取附件文件的访问链接:
<%= image_tag url_for(@user.avatar) %>
上述示例中的 User
模型和 UsersController
控制器是举例说明,你需要根据自己的项目来修改。
希望上述示例能帮助你在 Rails 项目中使用 Google Cloud 作为 ActiveStorage 的缓存存储。