ProgateでRuby on Rails5 道場コース I 8.投稿機能を作ろう(一覧・詳細ページ)を勉強しています。
答えを見ながら、コードを入れても【「localhost:3000/posts/index」に全ての投稿が表示されていません。】と出ます。原因が分からないため教えていただきたいです。
Ruby on rails get "posts/index" => "posts#index" get "/" => "home#top" get "about" => "home#about" end エディタ:posts_controll コード class PostsController < ApplicationController def index @posts = Post.all.order(created_at: :desc) end end エディタ:index.html.erb コード <h1>Posts#index</h1> <p>Find me in app/views/posts/index.html.erb</p> <div class="main posts-index"> <div class="container"> <% @posts.each do |post| %> <div class="posts-index-item"> <% post=["Rails 勉強中!","次は何の本を読もうかな","今日のランチおいしかった。"] %> </div> <% each end %> </div> </div> エディタ:Application.html. <!DOCTYPE html> <html> <head> <title>TweetApp</title> <%= csrf_meta_tags %> <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> </head> <body> <header> <div class="header-logo"> <%= link_to("TweetApp", "/") %> </div> <ul class="header-menus"> <li> <%= link_to("TweetAppとは", "/about") %> </li> <li> <%= link_to("投稿一覧", "/posts/index") %> </li> </ul> </header> <%= yield %> </body> </html> エディタ:create.posts.rb コード class CreatePosts < ActiveRecord::Migration[5.0] def change create_table :posts do |t| t.text :content t.timestamps end end end エディタ:posts.scss コード .posts-index-item { padding: 20px 30px; background-color: white; overflow: hidden; box-shadow: 0 2px 6px #c1ced7; } .post-left img { width: 50px; border-radius: 40%; box-shadow: 0 2px 6px #c1ced7; } .post-user-name a { font-weight: 600; } .post-user-name a:hover { color: #3ecdc6; } .post-left { float: left; width: 10%; } .post-right { float: left; width: 90%; padding-left: 25px; text-align: left; } /* posts/show ================================ */ .posts-show form { display: inline; } .posts-show-item { padding: 30px; background-color: white; box-shadow: 0 2px 6px #c1ced7; overflow: hidden; } .posts-show-item img { width: 60px; border-radius: 40%; box-shadow: 0 2px 6px #c1ced7; vertical-align: middle; } .posts-show-item .post-user-name a { vertical-align: middle; font-size: 24px; margin-left: 15px; } .posts-show-item p { font-size: 24px; margin: 20px 0; } .post-time { color: #8899a6; margin-bottom: 10px; } .posts-show-item .fa { font-size: 16px; margin-right: 3px; } .like-btn { padding: 0; background-color: white; color: #8899a6; font-size: 16px; margin-bottom: 0; outline-width: 0; } .like-btn-unlike { color: #ff2581; } .post-menus { float: right; } .post-menus a { color: #8899a6; text-decoration: underline; font-size: 14px; } /* 新規投稿 & 編集 */ .posts-new textarea { font-size: 20px; padding: 10px; min-height: 140px; border: 1px solid rgb(216, 218, 223); resize: none; } .posts-new textarea::-webkit-input-placeholder { font-size: 24px; opacity: 0.5; }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/30 04:53
2020/03/31 00:46
2020/03/31 02:02
2020/03/31 06:50
2020/04/01 06:42
2020/04/01 06:46