Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做一些我认为使用fuelphp非常基本的事情基本上我需要使用多个url和一个控制器,并为每个不同的路由分配一个默认参数(一个猫ID)
例如,在我的清单控制器中,我想使用 2 条不同的路线:
/bags /accessories
每个都将被分配它的猫ID
在fuelphp中似乎找不到任何简单的方法......
您可以指定一个路由'path/here/(:segment) => 'controller/cat/$1,然后将路由中捕获的段作为第一个参数传递给action_cat控制器类中调用的方法。
'path/here/(:segment) => 'controller/cat/$1
action_cat
文档http://fuelphp.com/docs/general/routing.html中很好地概述了这种行为