zend_view 中的 headMeta() 什么也不返回,我做错了什么?

发布于 2024-11-01 21:19:50 字数 410 浏览 1 评论 0原文

我将 Pimcore 与 Zend Framework 结合使用。在我的标题视图中,我输出:

headMeta(); ?>

输出为空。 相反,我将其更改为:

>

效果很好。这里的问题是我想正确使用 zend 并且我觉得这可能不是最理想的方法。

谁能指导我执行此操作的正确方法?

谢谢你!

I'm using Pimcore with the Zend Framework. In my header view, I output this:

<?php echo $this->headMeta(); ?>

The output is blank.
Instead I've changed it to this:

<meta name="description" content="<?php echo $this->document->description ?>" />
<meta name="keywords" content="<?php echo $this->document->keywords ?>" />

That works fine. The issue here is that I want to use zend correctly and I feel that this is probably not the most ideal approach.

Can anyone coach me on the correct way of performing this?

Thank you!

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

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

发布评论

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

评论(1

南城追梦 2024-11-08 21:19:50

在您的 Boostrap.php 文件中,您需要使用如下值初始化 head

$view->headMeta()->appendHttpEquiv('Content-type', 'text/html; charset=UTF-8')
                 ->appendName('description', 'mySite');

$view->headTitle()->setSeparator ('-')->headTitle('myPage');

$view->doctype('HTML4_STRICT');

此代码属于 _initViewHelpers 函数。然后你可以在中调用它:

<?php
    echo $this->doctype ();
?>
<html>
    <head>
    <?php 
        echo $this->headMeta();
        echo $this->headTitle();
    ?>
//...

In your Boostrap.php file you need to init the head with values like this:

$view->headMeta()->appendHttpEquiv('Content-type', 'text/html; charset=UTF-8')
                 ->appendName('description', 'mySite');

$view->headTitle()->setSeparator ('-')->headTitle('myPage');

$view->doctype('HTML4_STRICT');

This code belongs in the _initViewHelpers function. Then you can call it in the <head>:

<?php
    echo $this->doctype ();
?>
<html>
    <head>
    <?php 
        echo $this->headMeta();
        echo $this->headTitle();
    ?>
//...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文