无法从控制器文件访问 zend 视图

发布于 2024-10-20 01:07:49 字数 198 浏览 4 评论 0原文

我可以在控制器文件中打印表单内容,但是当我将表单视图分配为 $this->view->form = $form 并尝试使用 < 显示表单设计时code>echo $this->form 在 login.phtml 文件中,未查看表单设计,而是显示空白页面......

可能是什么问题?

I am able to print the form content in the controller file, but when I assign the form view as $this->view->form = $form and trying to display the form design using echo $this->form in login.phtml file, form design is not viewed, instead displaying blank page....

What could be the issue ??

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

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

发布评论

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

评论(1

┾廆蒐ゝ 2024-10-27 01:07:49

看起来应该可行:

// in the controller
$this->view->form = $form;

// in the view
<?= $this->form ?>

所以问题出在其他地方。

显示空白页面可能是由于 error_reporting 关闭所致。

更新 application.ini 并设置 error_reporting,显示错误并向 true 抛出异常,以查看实际发生的情况。

编辑:

要检查的事情:

  • 您的视图是否已初始化?
  • 您的 application.ini 是否包含任何 resources.view[]=
  • 您是否不小心覆盖了视图? $this->view = null

Looks like it should work:

// in the controller
$this->view->form = $form;

// in the view
<?= $this->form ?>

So the problem is somewhere else.

The blank page is displayed probably due to that the error_reporting is turrned off.

Update application.ini and set error_reporting, displaying errors and throwing exceptions to true to see what is actually happening.

Edit:

Things to check:

  • Is your view initialized?
  • Does your application.ini contains any resources.view[]=
  • haven't you accidentally overwritten the view? $this->view = null
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文