ASP.NET MVC 2 RC 表单级别的 ModelState.AddModelError
在 ASP.NET MVC 的早期版本中,您可以使用 ModelState.AddModelError("**_FORM**", "error")
在表单级别而不是属性上产生错误 -等级。这似乎不再适用于 ASP.NET MVC 2 的新 RC。
还有其他方法吗?我在我的视图文件中使用 <%= Html.ValidationSummary() %>
...
In the previous versions on ASP.NET MVC, you could use ModelState.AddModelError("**_FORM**", "error")
to make an error on the form-level instead of a property-level. This seems not to work anymore with the new RC of ASP.NET MVC 2.
Is there another way how to do it? I use <%= Html.ValidationSummary() %>
at my View-file...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我个人使用
AddModelError(""
- 我不知道 _FORM 从哪里来? - 并且ValidationSummary()
不是黑魔法 - 我使用我自己的助手代替例如,将特定的(特定于用户的)异常消息包含到输出中 - 一个简单的 ModelState 上的 foreach 循环 - 因此您可以考虑编写自己的异常消息,您可以自由地显示表单级别。 、财产级别或任何您喜欢的级别。I personally use
AddModelError(""
- I don't know where does _FORM come from? - andValidationSummary()
is no black magic - I use my own helper instead that, for example, includes specific (user-specific) exceptions messages into output. The helper is very easy to write - a simple foreach loop over ModelState - so you may consider writing your own one. There you're free to show form-level, property-level, or whatever you like.错误位于 modelstate 内部,并通过以下参数发送到validationsummary 的帮助程序类:
the error are inside modelstate and is send to the helper class of validationsummary by following argument: