-2
A
回答
0
的硬善待明白你正在嘗試做的,但我猜你正在尋找這樣的事情。
在你routes.php
:
Router::connect(
'/sample-:param1-:param2-:param3', // param1 = A, param = B, ...
array('controller' => 'sample', 'action' => 'view'),
array(
// pass the parameters to the Controller function
'pass' => array('param1', 'param2', 'param3'),
// optional: only allow a set of characters with regex
'param1' => '[A-Z]{1}', // only allow one uppercase letter
'param2' => '[A-Z]{1}',
'param3' => '[A-Z]{1}'
)
);
在你的控制器:
class SampleController extends AppController {
public function view($param1, $param2, $param3) {
// do stuff here
}
}
相關問題
- 1. CakePHP,GET參數和路由
- 2. CakePHP默認路由參數
- 3. 添加參數到cakephp 1.3路由
- 4. CakePHP REST參數自定義路由
- 5. 建立路由參數CakePHP中
- 6. 使用GET參數的CakePHP路由
- 7. CakePHP的路由和命名參數
- 8. CakePHP的路由 - 搜索參數parms
- 9. CakePHP路由 - 只有參數的URL
- 10. CakePHP路由 - 作爲行動的參數
- 11. CakePHP 3路由與語言參數
- 12. Angular2路由,路由參數
- 13. Cakephp路由
- 14. 路由CakePHP中
- 15. 路由,參數
- 16. CakePHP路線索引參數
- 17. Cakephp多級路由
- 18. Cakephp網址路由
- 19. CakePHP:路由問題
- 20. CakePHP路由幫助
- 21. CakePHP路由查詢
- 22. Cakephp路由前綴
- 23. CakePHP路由問題
- 24. CakePHP的路由MissingControllerException
- 25. CakePHP的路由器,路由不工作
- 26. Ember.js路由參數
- 27. AngularJS:URL參數路由
- 28. Web.Api路由附加參數到路由
- 29. React路由器和路由參數
- 30. 流量路由器參數路由
如果這是cakephp2看到這裏https://book.cakephp.org/2.0/en/development/routing.html #傳遞參數到行動 –
我checked.but我不明白,我想要做的。 –