我有 Zend 应用程序,我在其中重定向来自/popular?ref=<type>
类型为openings
或reviews
其他类型的页面请求,该请求将被重定向到索引页面。这是我尝试的新东西,而不是我一直做的通常方式。所以控制器popularAction
看起来像这样:
public function popularAction()
{
$type = $this->_getParam('ref',1);
if($type == 'reviews'){
$this->view->text = "Popular Reviews";
} elseif($type == 'openings') {
$this->view->text = "New Openings";
} else {
$this->_helper->redirector('index', 'index', 'default');
}
}
我有 1 个通用视图模板名称popular.phtml
,现在我的问题是,我怎样才能使用部分模板,以便将数据返回给特定 ref 的控制器的所有模型都可以将数据传递给部分模板,然后将其渲染到 Popular.phtml。谢谢!!