如何从控制器中的 URL 访问参数值?
How can I access parameter value from URL in the controller?
我需要一些关于在 phalcon 框架中传递参数的信息
示例 URL:http://localhost/project/vehicle/new/vinno/1323123
vehicleController{
newAction {
//get the value of vinno
// want to send parameter to view
}
}
尝试转储调度程序参数。
print_r($this->dispatcher->getParams());
以上将根据您的路由器定义为您提供完整的参数数组。 the docs.
中有关调度程序的更多信息
要获取特定参数值,您可以使用 getParam()
方法。
print_r($this->dispatcher->getParam('your_param_name'));
使用路由参数。并使用 $this->view->setVar
我需要一些关于在 phalcon 框架中传递参数的信息
示例 URL:http://localhost/project/vehicle/new/vinno/1323123
vehicleController{
newAction {
//get the value of vinno
// want to send parameter to view
}
}
尝试转储调度程序参数。
print_r($this->dispatcher->getParams());
以上将根据您的路由器定义为您提供完整的参数数组。 the docs.
中有关调度程序的更多信息要获取特定参数值,您可以使用 getParam()
方法。
print_r($this->dispatcher->getParam('your_param_name'));
使用路由参数。并使用 $this->view->setVar