ruby-on-rails – Rails忽略了收集路线,而与show action相反

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails忽略了收集路线,而与show action相反前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的route.rb文件中设置了以下路由:
resources :people do 
  collection do
    get :search
  end
end

当我对url:http://localhost:3000/people/search.json?term=stepeb采取行动时,
服务器报告它使用show操作进行响应,具有正确的术语参数,但也具有设置为“search”的id参数.

这个问题,正如我所看到的,是两个网址
展示网址将是:

/people/:id

我相信路由器在获得/ people / search之前匹配该路由

如果是这样,基于路由的路由将如何工作?他们都不会被演出动作所捕获吗?

耙路的相关部分如下:

search_people GET      /people/search(.:format)                                                         {:action=>"search",:controller=>"people"}
                                     GET      /people(.:format)                                                                {:action=>"index",:controller=>"people"}
                              people POST     /people(.:format)                                                                {:action=>"create",:controller=>"people"}
                          new_person GET      /people/new(.:format)                                                            {:action=>"new",:controller=>"people"}
                                     GET      /people/:id(.:format)                                                            {:action=>"show",:controller=>"people"}
                                     PUT      /people/:id(.:format)                                                            {:action=>"update",:controller=>"people"}
                              person DELETE   /people/:id(.:format)                                                            {:action=>"destroy",:controller=>"people"}
                         edit_person GET      /people/:id/edit(.:format)                                                       {:action=>"edit",:controller=>"people"}

解决方法

Doh,忘了这一个.原来我有一个重复的资源:人们在路线文件的顶部. Rails是第一个.似乎对我来说真的应该在那里检查重复的路由定义.
原文链接:https://www.f2er.com/ruby/266239.html

猜你在找的Ruby相关文章