无法从控制器文件访问 zend 视图
我可以在控制器文件中打印表单内容,但是当我将表单视图分配为 $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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来应该可行:
所以问题出在其他地方。
显示空白页面可能是由于
error_reporting
关闭所致。更新
application.ini
并设置error_reporting
,显示错误并向true
抛出异常,以查看实际发生的情况。编辑:
要检查的事情:
application.ini
是否包含任何resources.view[]=
$this->view = null
Looks like it should work:
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 seterror_reporting
, displaying errors and throwing exceptions totrue
to see what is actually happening.Edit:
Things to check:
application.ini
contains anyresources.view[]=
$this->view = null