0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

eachを使うと情報が全部表示される

Posted at

#はじめに

スクリーンショット 2021-07-27 21.31.16(2).png

コメント機能を実装しました。
しかし何故かDBの情報が全部表示されてしまいます。

すごい凡ミスだったのですが投稿します。

#現在の記述

<%= form_with(model: [@review, @comment], local: true) do |f| %>
 <%= f.text_area :content %>
 <%= f.submit "コメントする", class: "btn btn-outline-info" %>
<% end %>

<%= @comments.each do |comment| %> #コメント一覧を表示
 <%= comment.user.nickname %> #コメントしたユーザー名表示
 <%= comment.content %> #コメント表示
 <%= time_ago_in_words(comment.created_at) %>前にコメント  #コメントした時間表示
<% end %>

スクリーンショット 2021-07-27 21.40.38(2).png

コメントする前から最初から[]があったでおかしいとは思ってました。

#結論

<%= @comments.each do |comment| %> 

こいつに問題がありました。

これは表示されてはいけないので<% %>このように記述しなけらばなりません。

なので以下のように記述します。

<% @comments.each do |comment| %> 
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?