2

我想从帮助函数中访问我在视图中设置的视图块。不过,我似乎无法弄清楚。

这是我想做的事情:

查看文件:

<? $this->start('someblock'); ?>
  Some content goes here.
<? $this->end(); ?>

帮手:

function do_something() {
  debug($this->fetch('someblock');
}

我试图弄清楚如何从帮助程序访问视图块的内容。我宁愿不在变量中传递数据——我已经知道该怎么做。

谢谢你的帮助!

4

1 回答 1

4

所有助手都扩展了为当前视图helper.php设置属性。_View

所以你会使用:

$this->_View->start('someblock');
于 2013-08-06T00:02:06.687 回答