1
我不知道我在做什麼錯在這裏。任何人有任何見解?Rails路由問題與控制器測試
這裏是我的routes.rb
resources :accounts do
collection do
get "search/:term/:offset/:limit.:format", :action => "search", :constraints => { :offset => /\d+/, :limit => /\d+/ }
end
end
這裏是我的耙路輸出...
GET /accounts/search/:term/:offset/:limit.:format {:offset=>/\d+/, :action=>"search", :controller=>"accounts", :limit=>/\d+/}
這裏是我的測試線...
get :search, :term => "Test", :offset => 0, :limit => 2
這裏是我的錯誤.. 。
ActionController::RoutingError: No route matches {:term=>"Test", :action=>"search", :controller=>"accounts", :offset=>0, :limit=>2}
任何想法?
在此先感謝!