Rails 3.2重定向跳过创建操作

时间:2013-04-22 16:53:32

标签: ruby-on-rails routing

我有一个Rails 3博客风格的应用程序,我有一个用于后端的 admin 命名空间和一个 controllers / admin 子文件夹,其中包含相应的 posts_controller.rb 即可。

因此页面的根网址设置为“admin / posts #index”,并且帖子创建工作正常,除非我配置路由文件以将用户重定向到root_url,如果他键入“/ admin / articles”。

这是我的路线档案:

BlogDos::Application.routes.draw do
  # Index
  root to: "admin/posts#index"

  # If I uncomment these two lines below, the post#create function doesn't work. When I 
  # submit the "new post" form, the controller just skips the function entirelly and  
  # redirects me to admin/posts#index without creating the new post.
  # match "admin/posts" => redirect("/")
  # match "admin/posts/" => redirect("/")

  namespace :admin do
    resources :cpanel
    resources :posts do
      resources :comments, :only => [:create, :destroy]
    end
    root to: "cpanel#index"
  end
..
end

这是我的 posts_controller.rb

def create
    @usuario = current_user
    @post = @usuario .posts.create(params[:post])

    respond_to do |format|
      if @post.save
        format.html { redirect_to article_dir_path(@post.year, @post.month, @post.slug), notice: 'Article was successfully created.' }
        format.json { render json: article_dir_path(@post.year, @post.month, @post.slug), status: :created, location: article_dir_path(@post.year, @post.month, @post.slug) }
      else
        format.html { render action: "new" }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

奇怪的是,这只发生在Create动作中,如果我编辑文章并更新它,一切正常。 我已经从Rails教程和QA网站中找到了几乎所有的东西,除了这个小问题,我确信它是相当简单的,但我是Rails的新手并且还不熟悉它的路由机制。

1 个答案:

答案 0 :(得分:0)

创建帖子的表单提交

/admin/posts

如果将该路由重定向到索引页面,则永远不会调用控制器操作。