我想'关于'路由到'abouts / 1'
我试过了:
match 'about' => 'abouts#show/1', :via => get
它不起作用。有什么想法吗?
答案 0 :(得分:3)
如何从路径中删除1并直接在控制器方法中检索所需的记录?
# routes.rb
match 'about' => 'abouts#show', :via => get
# abouts_controller.rb
def show
@about = About.find(1)
end
答案 1 :(得分:3)
怎么样:
match 'about' => 'abouts#show', :via => :get, :defaults => {:id => 1}