4

私のRailsアプリケーションではroutes.rb

match "show_fail" => "Posts#show_fail"

posts_controller.rb

def create
  ...
  return redirect_to show_fail_path, :title => @post.title
end

def show_fail
end

show_fail.html.erb

Unsuccessful posting of post title <%= title %>

しかし、エラーが発生しましundefined local variable or method 'title'た。なぜtitle変数について知らないのですか、どうすれば修正できますか?

4

1 に答える 1

4

redirect_to show_fail_path(:title => @ post.title)

params [:title]から取得します

于 2012-10-19T16:20:13.773 に答える