我刚刚升级了5.1.4。应用程序到5.2,我正在尝试将Paperclip替换为ActiveStorage。在尝试使用图像更新现有记录时,我收到以下错误:
无法自动加载常量ActiveStorage :: Blob :: Analyzable,预期 /Users/Simon/.rvm/gems/ruby-2.4.0/gems/activestorage-5.2.0/app/models/active_storage/blob/analyzable.rb 定义它
在我的模特中:
has_one_attached :pic
在我的控制器中:
...
def update
respond_to do |format|
if @gin.update(gin_params)
format.html { redirect_to @gin, notice: 'Gin was successfully updated.' }
format.json { render :show, status: :ok, location: @gin }
else
format.html { render :edit }
format.json { render json: @gin.errors, status: :unprocessable_entity }
end
end
end
...
def gin_params params.require(:gin).permit(:name, :text, :snippet,
:pic, :slug, :abv, distillery_attributes: [:id, :name], botanical_ids:
[]) end
在storage.yml:
amazon:
service: S3
access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
region: xx-xxxx-x
bucket: xxxxxxx
我通过rails credentials:edit
在development.rb中:
config.active_storage.service = :amazon
在我看来:
<%= image_tag @gin.pic, class: "border shadow-lg" %>
我一直在阅读http://edgeapi.rubyonrails.org/classes/ActiveStorage/Blob/Analyzable.html,但这对我来说没有多大意义。
该错误让我在app/models/active_storage/blob/analyzable.rb
查找该文件,但我在我的应用中看不到它?
我错过了什么?
答案 0 :(得分:2)
我有完全相同的错误。对我来说是因为缺少AWS S3的凭据( credentials.yml.enc 中缺少了)
答案 1 :(得分:1)
解决
虽然我已经gem 'aws-sdk-s3', '~>1'
,但我没有require: false
答案 2 :(得分:1)
我有这个异常,但是导致我的问题的原因是活动存储静默地无法从storage.yml加载其配置:
在Rails控制台中加载文件会显示异常(而Rails会在加载活动存储配置时吞下该异常):
YAML.load(ERB.new(File.read("#{Rails.root}/config/storage.yml")).result)
NoMethodError: undefined method `[]' for nil:NilClass
我的ERB插值无效。解决此问题可以解决我的问题。
答案 3 :(得分:0)
启动rails active_storage:install
和rails db:migrate
添加此宝石gem 'aws-sdk-s3', '~>1'
和bundle
删除您的credential.yml.enc
和master.key
(如果存在)
启动EDITOR=vim rails credentials:edit
并放入您的凭据
通常rails s
应该可以工作