ZF:查看布局的变量定义

发布于 11-10 15:13 字数 459 浏览 4 评论 0原文

我有一些控制器索引。 我在那里定义了变量:

class IndexController extends Zend_Controller_Action
{
      function IndexController()
      {
           $this->view->some_val = 100;
      }
}

布局是这样的:

<html>
<p><?= $this->some_val; ?></p>
<?= $this->getLayout()->content; ?>
</html>

但在这种情况下,我得到 NULL 而不是 100。我尝试在 preDispatch 函数中定义它,但结果是相同的。 有人可以帮忙吗? 提前感谢大家

I have some controller Index.
There I defined variable:

class IndexController extends Zend_Controller_Action
{
      function IndexController()
      {
           $this->view->some_val = 100;
      }
}

And the layout is like this:

<html>
<p><?= $this->some_val; ?></p>
<?= $this->getLayout()->content; ?>
</html>

But in th this case I get NULL instead of 100. I tried to define it in preDispatch function but result is the same.
Could anybody help pls?
Thanks to all in advance

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

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

发布评论

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

评论(2

香橙ぽ2024-11-17 15:13:21

一如@Yanick Rochon 所写。另一种方法是将变量直接分配给您的布局(),例如

class IndexController extends Zend_Controller_Action
{
      function IndexController()
      {
           $this->view->layout()->some_val = 100;
      }
}

然后在您的布局中;

<p><?= $this->layout()->some_val; ?></p>

One one would be as @Yanick Rochon wrote. Another way would be to assing variables directly to your layout(), e.g.

class IndexController extends Zend_Controller_Action
{
      function IndexController()
      {
           $this->view->layout()->some_val = 100;
      }
}

Then in your layout;

<p><?= $this->layout()->some_val; ?></p>
说不完的你爱2024-11-17 15:13:21

如果您需要保存可重用变量,请

public function indexAction() {
    $this->view->placeholder('some_value')->set(100);
}

在任何视图脚本或布局中使用 placeholder 视图助手

echo $this->placeholder('some_value')->getValue();   // -> 100

If you need to save a reusable variable, use the placeholder view helper

public function indexAction() {
    $this->view->placeholder('some_value')->set(100);
}

and in any view script, or layout

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