可以查看助手读取请求

发布于 2024-10-30 19:38:48 字数 82 浏览 0 评论 0原文

在操作助手中,我可以使用 $this->getRequest(); 获取请求

视图助手有类似的东西吗?

In an action helper, I can get request using $this->getRequest();

Anything similar for a view helper?

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

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

发布评论

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

评论(1

池木 2024-11-06 19:38:48

您可以使用

Zend_Controller_Front::getInstance()->getRequest()

获取前端控制器,然后从您的视图中获取前端控制器的请求。

尽管您应该使用控制器来接受请求,然后将正确的数据传递给视图。视图应该独立于请求并通过控制器解耦。这样做基本上破坏了 Zend Framework 的 MVC 实现。

You can use

Zend_Controller_Front::getInstance()->getRequest()

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.

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