簡単なToDoアプリを作成しています。
findメソッドを定義して詳細ページを表示しようとしているのですが、エラーが出ます。
どこが間違っているのかわかりません。教えてください。
Rails.application.routes.draw do # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html get 'hello/index' => 'hello#index' get 'hello/link' => 'hello#link' get 'posts' => 'posts#index' get 'posts/new' => 'posts#new' get 'posts/:id' => 'posts#show',as: 'post' post 'posts' => 'posts#create' root 'hello#index' end コード
class PostsController < ApplicationController def index @posts = Post.all end def new @post = Post.new end def create post = Post.new(post_params) if post.save redirect_to :action => "index" else redirect_to :action => "new" end end def show @post = Post.find(params[:id]) end private def post_params params.require(:post).permit(:contents) end end コード
<h1>ToDoアプリ</h1> <h3>詳細</h3> <div class="post"> <p><%= @post.contents %></p> <p><%= @post.created_at %></p> </div> <%= link_to "一覧に戻る", posts_path %> コード
Enjoy
1<%= link_to "新規ページへ", posts_new_path %> 2 3<h1>ToDoアプリ</h1> 4<h3>一覧</h3> 5<%= link_to "新規投稿へ", posts_new_path %> 6<div class="posts-container"> 7 <% @posts.each do |t| %> 8 <div class="post"> 9 <%= t.contents %> 10 <%= t.created_at %> 11 <%= link_to "詳細へ", post_path(t.id) %> 12 </div> 13 <% end %> 14</div> 15コード
viewがいくつかのっていますが、fileのpathがないので解析できません。
app/views の下から記入してください
あなたの回答
tips
プレビュー