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

发布于 2024-10-04 12:20:37 字数 91 浏览 4 评论 0原文

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

I have an action, successAction(), it uses the file in my views folder, success.phtml, how do I tell the action that I want it to use the success2.phtml file instead

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千纸鹤 2024-10-11 12:20:38

使用 Zend_Controller_Actionrender。这将在controller-name/success2.phtml中呈现视图脚本,

class ControllerName_Controller_Action extends Zend_Controller_Action
{
    public function successAction()
    {
        $this->render("success2");
    }
}

您应该阅读 Zend Controller 上的文档了解更多信息。

Use Zend_Controller_Action's render. This would render the view script in controller-name/success2.phtml

class ControllerName_Controller_Action extends Zend_Controller_Action
{
    public function successAction()
    {
        $this->render("success2");
    }
}

You should read the docs on Zend Controller's for more.

梦回梦里 2024-10-11 12:20:38
$this->render('success2');
$this->render('success2');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文