10

ここにある Rails 4.0.0 の入門チュートリアルに従っています: http://guides.rubyonrails.org/getting_started.html#updating-posts

メイン ページ (localhost) から localhost/posts に移動しようとすると、次のエラーが発生します。

ActionController::UrlGenerationError in Posts#index
Showing C:/RailsInstaller/blog/app/views/posts/index.html.erb where line #16 raised:

No route matches {:action=>"show", :controller=>"posts"} missing required keys: [:id]
Extracted source (around line #16):

13   <tr>
14     <td><%= post.title %></td>
15     <td><%= post.text %></td>
16     <td><%= link_to 'Show', post_path %></td>
17     <td><%= link_to 'Edit', edit_post_path(post) %></td>
18   </tr>
19 <% end %>

さらに、投稿を編集しようとすると、edit.html.erb ファイルに SyntaxError が表示されます。

C:/RailsInstaller/blog/app/views/posts/edit.html.erb:3: syntax error, unexpected '}', expecting keyword_end
';@output_buffer.append=  form_for :post, url: post_path(@post.id) },
                                                                    ^
C:/RailsInstaller/blog/app/views/posts/edit.html.erb:32: syntax error, unexpected keyword_ensure, expecting $end

具体的には、次の行を使用します。

<%= form_for :post, url: post_path(@post.id) },
  method: :patch do |f| %>

Rails を学習するのはこれが初めての試みなので、これらのエラーが発生したときにどこを見始めればよいかさえ理解するのに苦労しています。関連するファイルを次に示します。

posts_controller.rb:

class PostsController < ApplicationController

def index
  @posts = Post.all
end

def new
  @post = Post.new
end

def create
  @post = Post.new(params[:post].permit(:title, :text))

  if @post.save
    redirect_to @post
  else
    render 'new'
  end
end

def show
  @post = Post.find(params[:id])
end

def update
  @post = Post.find(params[:id])

  if @post.update(params[:post].permit(:title, :text))
    redirect_to @post
  else
    render 'edit'
  end
end

def edit
  @post = Post.find(params[:id])
end

private
  def post_params
    params.require(:post).permit(:title, :text)
  end
end

edit.html.rb:

<h1>Editing post</h1>

<%= form_for :post, url: post_path(@post.id) },
method: :patch do |f| %>
  <% if @post.errors.any? %>
  <div id="errorExplanation">
    <h2><%= pluralize(@post.errors.count, "error") %> prohibited
      this post from being saved:</h2>
    <ul>
    <% @post.errors.full_messages.each do |msg| %>
      <li><%= msg %></li>
    <% end %>
    </ul>
  </div>
  <% end %>
  <p>
    <%= f.label :title %><br>
    <%= f.text_field :title %>
  </p>

  <p>
    <%= f.label :text %><br>
    <%= f.text_area :text %>
  </p>

<%= f.submit %>

ルート:rb:

Blog::Application.routes.draw do
  resources :posts
  root to: "welcome#index"
end
4

1 に答える 1

11

エラーはこの行が原因であると言われています

<td><%= link_to 'Show', post_path %></td>

そのはず

<td><%= link_to 'Show', post %></td>

また

<td><%= link_to 'Show', post_path(post) %></td>
于 2013-07-05T03:29:57.197 に答える