gpt4 book ai didi

c# - 知道表单在 MVC 3 中是否有验证错误

转载 作者:行者123 更新时间:2023-11-30 14:17:10 25 4
gpt4 key购买 nike

我有一个通过 AJAX 提交的表单。它使用标准的 MVC 验证。当用户第一次加载页面时,这个表单是隐藏的。它仅在用户单击页面中的按钮后出现。

我想知道是否有办法知道——在 View 中——验证中是否有错误。因此,下次显示表单时,将显示表单而不是隐藏表单。

最佳答案

你可以这样知道:

if ($('#someFormId').valid()) {
// the form is valid
} else {
// the form contains validation errors
}

或者如果您想测试 View 中是否存在某些模式错误:

@if (ViewData.ModelState.IsValid)
{
// there are no errors to display
} else {
// there were validation errors
}

关于c# - 知道表单在 MVC 3 中是否有验证错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6363420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com