从我的 Rails 控制器,以create
我想做的方法
redirect_to @post(:notice => "Post successful', :status => "Success!")
show.html.erb
并通过使用<%= notice %>
和访问参数<%= status %>
但它不起作用。我该如何解决?
routes.rb
文件:
Archive::Application.routes.draw do
resources :posts
root :to => "Posts#new"
end