Ruby on Rails(6)
投稿一覧ページから投稿詳細ページへのリンク <% @posts.each do |post| %> <div class "posts-index-item"> <%= link_to(post.content,"/posts/#{post.id}")%> </div> <% end %> 新規投稿ページの作成 localhost:3000/posts/newというURLで作る ルーティング、アク...