可以查看助手读取请求
在操作助手中,我可以使用 $this->getRequest();
获取请求
视图助手有类似的东西吗?
In an action helper, I can get request using $this->getRequest();
Anything similar for a view helper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
获取前端控制器,然后从您的视图中获取前端控制器的请求。
尽管您应该使用控制器来接受请求,然后将正确的数据传递给视图。视图应该独立于请求并通过控制器解耦。这样做基本上破坏了 Zend Framework 的 MVC 实现。
You can use
To get the front controller and then the request from that within your view.
Although you should be using the controller to take the request and then pass on the correct data to the view. The view should be independent of the request and decoupled via the controller. Doing this basically breaks the MVC implementation of Zend Framework.