我可以在控制器文件中打印表单内容,但是当我将表单视图分配为$this->view->form = $form
并尝试echo $this->form
在login.phtml
文件中显示表单设计时,不会查看表单设计,而是显示空白页....
可能是什么问题 ??
我可以在控制器文件中打印表单内容,但是当我将表单视图分配为$this->view->form = $form
并尝试echo $this->form
在login.phtml
文件中显示表单设计时,不会查看表单设计,而是显示空白页....
可能是什么问题 ??
看起来它应该工作:
// 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