在我的 routes.rb 中,我有:
map.connect ':name',
:controller => 'my_classes',
:action => 'show'
而且效果很好,所以像这样的 url 发送的参数如下:
http://localhost:30000/awesome
Parameters: {"name"=>"awesome"}
但是,如果我有这样的事情,我会得到这个错误:
http://localhost:30000/weak.sauce
ActionController::RoutingError (No route matches "/weak.sauce" with {:method=>:get}):
我怎样才能解决这个问题?