即使 ModelState 有效,为什么仍显示 ValidationSummary?
我在表单顶部有一个 @Html.ValidationSummary("请检查以下错误:") 的视图。无论模型状态是否有效,文本“请检查以下错误:”总是呈现(我已经在视图和控制器中验证了模型状态)。
谁能指出我为什么会发生这种情况?我觉得我在这里错过了一些非常基本的东西 - 但我很难过!
I have a view with @Html.ValidationSummary("Please check the following errors:") at the top of a form. The text "Please check the following errors:" is always rendered, whether or not the model state is valid (I have verified the model state both in the view and in the controller).
Can anyone point me to why this is happening? I feel like I'm missing something pretty basic here - but I'm stumped!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
呃 - 我刚刚意识到为什么。这是因为我删除了验证摘要的默认样式!添加回来解决了我的问题:
天啊!
Uh - I just realised why. It was because I'd removed the default styles for the validation summary! Adding this back in solved my issue:
D'oh!