Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法向用户隐藏所有表单错误消息?我显示自己的消息,而错误消息显示在表单字段之间的事实对我没有用。
您可以自己渲染模板,而忽略错误。有关详细信息,请参阅有关自定义表单模板的文档。
或者,默认设置是将错误包含在无序列表中,例如:
<ul class="errorlist"> <li>Sender is required.</li> </ul>
errorlist所以你可以用 CSS隐藏这个类。
errorlist
ul.errorlist {display:none;}
第三个选项是自定义错误列表格式,但我认为前两个选项更容易。