我正在使用自定义表单模板,并且所有模板都至少在错误列表中运行,请按照模板进行操作:
'errorList' => '<ul>{{content}}</ul>',
'errorItem' => '<li>{{text}}</li>',
'input' => '<input {{type}} {{attrs}} {{name}} class="form-control">',
当发生某些验证错误时,我会在每个输入下面显示错误。我需要做更多的事情才能在列表中显示错误吗?
答案 0 :(得分:0)
不确定究竟发生了什么,因为你没有提供剩下的代码,但到目前为止我可以看到关闭标签时出错
'errorList' => '<ul>{{content}}</li>',
也许这就是问题
'errorList' => '<ul>{{content}}</ul>',