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.
我在布局文件中有一个局部视图,我的局部视图有一个表单和一些服务器端验证。当我的表单提交并且模型状态无效时,我应该返回什么?
这里有些粗体:
1) 我不想使用 javascript
2)我想在客户端显示模型统计错误
谢谢 :)
如果你想让它表现得像一个局部视图:
return PartialView();
这会将原始模型与当前模型状态一起发布。您可以使用@Html.ValidationSummary()显示@FSou1 所述的错误。
@Html.ValidationSummary()
您应该@Html.ValidationSummary()在要显示错误的地方添加