アクティブストレージを使用して、アイコン画像を取得したい
新規ユーザー登録機能の実装をしています。
その中で、アイコン画像を取り入れたいと思っています。
現在、エラーは出ませんが、画像を取得することができません。
該当のソースコード
model user.rb class User < ApplicationRecord devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable, :omniauthable, omniauth_providers: [:facebook, :google_oauth2, :line, :twitter] # :validatable ユーザー編集の際、passwordを毎回入力するのが面倒なので、コメントアウト has_many :comments has_many :orders has_one :address has_many :items has_one :card, dependent: :destroy has_many :comments has_many :sns_credentials has_one_attached :avatar
devise > registrations > new.html.erb <div class="form-group"> <div class= 'form-img-wrap'> <label class="form-text">プロフィール写真</label> </div> <%= f.file_field :avatar %> </div>
部分テンプレート shared > _header.html.erb <ul class='lists-right'> <% if user_signed_in? %> <li><%= link_to current_user.nickname, user_path(current_user), class: "user-nickname" %></li> <li><%= image_tag current_user.avatar, class: "user-avater" if current_user.avatar.attached? %></li> <li><%= link_to 'ログアウト', destroy_user_session_path, method: :delete, class: "logout"%></li> <% else %> <li><%= link_to 'ログイン', new_user_session_path, class: "login" %></li> <li><%= link_to '新規登録', new_user_registration_path, class: "sign-up" %></li> <% end%> </ul>
aplication_controller.rb private def configure_permitted_parameters devise_parameter_sanitizer.permit(:sign_up, keys: [:nickname, :firstname, :lastname, :first_name_kana, :last_name_kana, :birthday, :avater]) end
試したこと
gem ファイルの導入
gem 'mini_magick'
gem 'image_processing', '~> 1.2'
よろしくお願いいたします。
あなたの回答
tips
プレビュー