参见英文答案 >
Why do routes with a dot in a parameter fail to match?3个
我在我的Category模型中覆盖了to_param方法
我在我的Category模型中覆盖了to_param方法
def to_param name end
和routes.rb
get '/:id' => 'categories#show',:as => :category
当name参数不包含任何点(foobar)时,一切正常,但是当它起作用时(f.o.o.b.a.r)
我收到错误没有路由匹配[GET].所以我的问题是:是否可以在路由中使用点作为参数名称的一部分?或者我可以做些什么来实现这个目的,也许是一些钩子或什么的.任何帮助表示赞赏.
解决方法
您可以更改此路线的约束:
get ':/id' => "categories#show",:as => :category,:constraints => { :id => /[\w+\.]+/ }
此路由现在将匹配:id到包含任何单词字符或点的任何字符串.