2021-07-02から1日間の記事一覧

Active Storage ActiveStorage::Attached

site.rb class Site < ApplicationRecord has_one_attached :og_image has_one_attached :favicon has_many_attached :main_images end favicon:アイコン画像 og_image:画像を1枚添付できる main_images:画像を複数枚添付できる これらをrails consoleで見て…

undefined method 'favicon' for nil:NilClass

突然以下のエラーに遭遇した。 application_controller def current_site # @current_siteがnillであれば、Site.firstを代入する。 @current_site ||= Site.first end helper_method :current_site current_siteはちゃんと定義できているしな〜... 原因がわ…