我在ApplicationController中有这个公共函数
public function indexAction($bar) {
echo $bar;
return new ViewModel();
}
我怎么能传递这个论点?我试过http://localhost/zf2/public/application/index/index?bar=foo 但这不起作用
答案 0 :(得分:1)
public function indexAction()
{
$bar = $this->params()->fromQuery('bar');
return new ViewModel();
}