代码之家  ›  专栏  ›  技术社区  ›  f00860

轨道路线中的可选字符串

  •  1
  • f00860  · 技术社区  · 14 年前

    map ":category/p:id(/:title)" => ...
    

    title参数应该是可选的,以便用户可以插入或保留可选的标题。遗憾的是,这不起作用。有什么想法吗?

    1 回复  |  直到 14 年前
        1
  •  3
  •   murphyslaw    14 年前

      
        match ':category/p:id(/:title)', :to => 'category#edit'
      
    

      
        map.connect ':category/p:id/:title, :controller => 'category', :action => 'edit', :title => 'default title'