如果未指定,我如何获得'default'参数?
请考虑以下事项:
http://localhost/controller/action/id/123
在我的控制器中,我可以使用
获取'id'的值$request = $this->getRequest();
$id = $request->getParam('id');
如果网址为
http://localhost/controller/action/456
如何获得456的值? 什么是'param'这个名字?
答案 0 :(得分:4)
默认情况下,ZF URL必须遵循以下模式:
/controller/action/param1Name/param1Val/param2Name/param2Val ...
您应该使用router。例如,在bootstrap.php
:
$frontController = Zend_Controller_Front::getInstance();
//^^^this line should be already there
$router = $frontController->getRouter();
$route = new Zend_Controller_Router_Route(
'yourController/yourAction/:id',
array(
'id' => 1, //default value
'controller' => 'yourController',
'action' => 'yourAction'
),
array('id' => '\d+')
);
$router->addRoute('yourController', $route);
答案 1 :(得分:1)
只想分享。
上述路由器设置必须与$ frontController一起使用。
一定要把它放在控制器发送之前。
<..above router code goes here...>
// Dispatch the request using the front controller.
$frontController->dispatch ();
希望不要像我一样浪费时间。 ; - )
答案 2 :(得分:0)
尝试将此路由添加到路由器:
$route = new Zend_Controller_Router_Route_Regex(
'my_controller/my_action/(\d+)',
array(
'controller' => 'my_controller',
'action' => 'my_action'
)
);
$router->addRoute('my_route', $route);