即使 ModelState 有效,为什么仍显示 ValidationSummary?

发布于 2024-12-01 15:15:06 字数 167 浏览 0 评论 0原文

我在表单顶部有一个 @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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

§对你不离不弃 2024-12-08 15:15:06

呃 - 我刚刚意识到为什么。这是因为我删除了验证摘要的默认样式!添加回来解决了我的问题:

.validation-summary-valid
{
    display: none;
}

天啊!

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:

.validation-summary-valid
{
    display: none;
}

D'oh!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文