如何在视图脚本中访问操作助手?
如何在视图脚本中访问操作助手?
$this->view->helper = $this->_helper->SomeHelper;
还有其他想法吗?
How access action helper in view script?
$this->view->helper = $this->_helper->SomeHelper;
Any other ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能......或者至少你不能“正常”这样做。你可以这样做
,但这不是正确的方式......我想。您也可以使用静态调用来完成此操作,这会好一点。
You can't ... or at least you can't do that "normally". You can do
But it's not the right way... I guess. You can do it also using static call, which is little better.
在您的 Bootstrap.php 中,确保注册视图助手目录
,然后在您的视图中调用
In your Bootstrap.php make sure to register the view helper directory
then in your view just call