0
定義路線我控制器命名爲GlossaryController 2個行動的indexAction和anotherAction鑑於我有一個目錄詞彙表和index.volt文件如何爾康
我想定義路由與示例參數 http://localhost/project/glossary/another/params應該我重定向到的indexAction與參數
定義路線我控制器命名爲GlossaryController 2個行動的indexAction和anotherAction鑑於我有一個目錄詞彙表和index.volt文件如何爾康
我想定義路由與示例參數 http://localhost/project/glossary/another/params應該我重定向到的indexAction與參數
在你routes.php文件文件中的應用程序/ C onfig文件夾中添加這一行:
$router->add("/glossary/another/{param1}/?{param2}", array(
"controller" => "Glossary",
"action" => "another",
));
而且你anotherAction方法是這樣的:
public function anotherAction($param1, $param2 = 0) {
//some code
}
這樣,第一個參數必須發送,第二個是可選的,您可以添加這種方式儘可能多的PARAMS爲你喜歡。
查看路由的各種方式官方文檔: https://olddocs.phalconphp.com/en/3.0.3/reference/routing.html
你的意思是你重定向到anotherAction與參數? 「另一個」是在網址? – ermacmkx