使用 MVC 在 zend 框架中包含页面页眉/页脚的最佳方法

发布于 2024-10-02 17:54:39 字数 465 浏览 6 评论 0原文

使用 MVC 时,在 zf 中包含页眉和页脚的最佳方法是什么?

目前我的引导程序中有这个:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap{
    static public function displayHeader(){
         return 'pageheader';   
    }
}

然后在控制器中我可以做类似的事情:

$this->view->header = Bootstrap::displayHeader();

有没有更好的方法来做到这一点?我可以将它与 render() 结合起来并使用 displayHeader 生成所有必需的变量,然后使用 render() 加载 header.phtml 文件吗?

任何见解都会很棒!

What is the best way to include a page header and footer within zf whilst using MVC?

At the moment I have this in my bootstrap:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap{
    static public function displayHeader(){
         return 'pageheader';   
    }
}

and then within a controller I can do something like:

$this->view->header = Bootstrap::displayHeader();

Is there a better way to do this? Could I perhaps combine it with render() and use the displayHeader to generate all the required variables then use render() to load the header.phtml file?

Any insight would be great!

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

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

发布评论

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

评论(1

鹤舞 2024-10-09 17:54:39

将其放入layout.phtml

<body>
    <?php echo $this->render('header.phtml') ?>
    <div id="nav"><?php echo $this->placeholder('nav') ?></div>
    <div id="content"><?php echo $this->layout()->content ?></div>
    <?php echo $this->render('footer.phtml') ?>
</body>

You put that into your layout.phtml

<body>
    <?php echo $this->render('header.phtml') ?>
    <div id="nav"><?php echo $this->placeholder('nav') ?></div>
    <div id="content"><?php echo $this->layout()->content ?></div>
    <?php echo $this->render('footer.phtml') ?>
</body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文