前提・実現したいこと
Ruby on Railsの勉強でオリジナルのWebアプリを作成しています。
user詳細ページでBootstrap4のカードの中にprofileを表示させたいです。
発生している問題・エラーメッセージ
profile登録フォームに入力した値がエラーがでないのにカードに表示されない。
該当のソースコード
models/user.rb
class User < ApplicationRecord has_one :profile, dependent: :destroy end
models/profile.rb
class Profile < ApplicationRecord belongs_to :user end
users/controller.rb
def show @user = User.find(params[:id]) @profile = current_user.build_profile end
profiles_controller.rb
def new @profile = current_user.build_profile end def create @profile = current_user.build_profile(profile_params) @profile.user_id = current_user.id if @profile.save flash[:primary] = 'プロフィールを登録しました' redirect_to current_user else flash[:danger] = 'プロフィールの登録に失敗しました' render :new end end private def profile_params params.require(:profile).permit(:artist, :song) end
users/show.html.erb
<div class="card"> <div class="card-header"> <h3><i class="fas fa-user-circle mr-2"></i><%= @user.name %></h3> </div> <div class="card-body"> <ul> <p>好きなアーティスト</p> <li><%= @profile.artist %></li> <p>好きな曲</p> <li><%= @profile.song %></li> </ul> </div> </div>
profiles/new.html.erb
<div class="row"> <div class="col-sm-6 offset-sm-3"> <%= form_with(model: @profile, local: true) do |f| %> <div class="form-group"> <%= f.label :artist, '好きなアーティスト' %> <%= f.text_field :artist, class: 'form-control' %> </div> <div class="form-group"> <%= f.label :song, '好きな曲' %> <%= f.text_field :song, class: 'form-control' %> </div> <%= f.submit '登録', class: 'btn btn-primary btn-block' %> <% end %> </div> </div>
試したこと
下記のように変更してみたんですが、これだとそれまで表示していた好きなアーティストと好きな曲の文字まで消えてしまい、profile登録フォームに入力した値も表示されませんでした。
users/show.html.erb
<% @profiles.each do |profile| %> <p>好きなアーティスト</p> <li><%= profile.artist %></li> <p>好きな曲</p> <li><%= profile.song %></li> <% end %>
users/controller.rb
def show @profiles = Profile.order(id: :desc) end
補足情報(FW/ツールのバージョンなど)
rails -v 5.2.4.3
cloud9
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/05 07:35