代码之家  ›  专栏  ›  技术社区  ›  GSto

Rails:向资源添加自定义操作

  •  15
  • GSto  · 技术社区  · 14 年前

    1 回复  |  直到 14 年前
        1
  •  33
  •   Zabba fl00r    14 年前

    在Rails 2.x中试用:

    map.resources :stories, :collection => { :top => :get , :latest => :get } 
    

    在Rails 3.x中:

    resources :stories do 
      collection do 
        get 'top'
        get 'latest'
      end 
    end