如何指定Zend Framework使用与操作默认文件不同的视图文件?

时间:2010-11-26 10:12:22

标签: php model-view-controller zend-framework

我有一个动作,successAction(),它使用我的views文件夹中的文件success.phtml,如何告诉我希望它使用success2.phtml文件的动作

2 个答案:

答案 0 :(得分:9)

使用Zend_Controller_Action' s render。这将在 controller-name / success2.phtml

中呈现视图脚本
class ControllerName_Controller_Action extends Zend_Controller_Action
{
    public function successAction()
    {
        $this->render("success2");
    }
}

您应该read the docs on Zend Controller's了解更多信息。

答案 1 :(得分:2)

$this->render('success2');