我希望索引操作能够采用get和post方法,这是可能的,如果是这样的话?
如果在这种情况下如何编写路线
map.resources:content,:only => [:index]
非常感谢
答案 0 :(得分:1)
不确定这是否适用于资源路由。
map.resources :content, :only => [ :index ], :conditions => {:method => [:get, :post]}
如果不是,你应该只是让它成为命名路线。
map.content 'content', :controller => :content, :action => :index ,:conditions => {:method => [:get, :post]}