showhtmlerb
1<% if user_signed_in? %> 2 <div class="post__comments"> 3 <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> 4 5 <%= form_with model: [@post,@comment], local: true do |f| %> 6 <div class="field"> 7 <%= f.label :text, "コメント" %><br /> 8 <%= f.text_field :text %> 9 </div> 10 <div class="actions"> 11 <%= f.submit "送信する", class: :form__btn %> 12 </div> 13 <% end %> 14 15 <%# // ログインしているユーザーには上記を表示する %> 16 <ul class="comments_lists"> 17 <%# 投稿に紐づくコメントを一覧する処理を記述する %> 18 <% @comments.each do |comment| %> 19 <li class="comments_list"> 20 <%# <%= " コメントのテキスト "%> 21 22 <strong> <%= link_to comment.user.name, "/users/#{@post.user.id}", class: :comment_user %></strong> %> 23 <%= comment.text %> 24 25 </li> 26 <%# // 投稿に紐づくコメントを一覧する処理を記述する %> 27 <% end %> 28 <% end %> 29 </ul> 30 </div> 31 </div> 32 </div>
posts
1class PostsController < ApplicationController 2 before_action :authenticate_user!,except:[:index,:show] 3 def index 4 @post = Post.all.order("created_at DESC") 5 @user = User.new 6 7 end 8 def new 9 @post = Post.new 10 end 11 def create 12 @post = Post.new(posts_params) 13 14 if @post.save 15 redirect_to root_path 16 else 17 render :new 18 end 19 end 20 def show 21 @post = Post.find(params[:id]) 22 @comment = Comment.new 23 @comments = @post.comments 24 25 end 26 27 private 28 def posts_params 29 params.require(:post).permit(:outer,:tops,:pants,:shoes,:hat,:accessory,:season_id,:image).merge(user_id: current_user.id) 30 end 31end
comment
1class CommentsController < ApplicationController 2 3 def create 4 @comment = Comment.new(comment_params) 5 @post = Post.find(params[:post_id]) 6 @comments = @post.comments 7 8 if @comment.save 9 redirect_to post_path(@post.id) 10 else 11 12 render "/posts/show" 13 end 14 15 private 16 def comment_params 17 params.require(:comment).permit(:text).merge(user_id: current_user.id, post_id: params[:post_id]) 18 end 19end
post
1class Post < ApplicationRecord 2 extend ActiveHash::Associations::ActiveRecordExtensions 3 belongs_to :user 4 has_one_attached :image 5 belongs_to :season 6 has_many :comment 7 with_options presence: true do 8 validates :tops 9 validates :pants 10 validates :shoes 11 validates :season_id 12 validates :image 13 validates :season_id, numericality: { other_than: 1 } 14 end 15end 16
回答1件
あなたの回答
tips
プレビュー