我有这个控制器:
gods_controller.rb
class GodsController < ApplicationController
def notifications
@reviews= Review.where("flag = ?", true)
respond_to do |format|
format.html # index.html.erb
end
end
end
路线.rb
resources :gods, :only => [:index] do
get :notifications
end
那条路线给了我这个:http ://example.com/gods/1/notifications
但我想要的是:http ://example.com/gods/notifications
提前致谢!