新mvc中的数据注释modelbinder

发布于 2024-09-27 13:44:17 字数 508 浏览 6 评论 0原文

您好,我们正在尝试升级我们的项目以在最新版本的 VS 2010 中工作,但我在旧的数据注释 Modelbinder 中遇到了问题。

Dim modelBinder = New DataAnnotationsModelBinder()

modelBinder.InvalidValueFormatter = _ 函数(propDescriptor 作为 PropertyDescriptor,值作为字符串,displayName 作为字符串)_ String.Format("'{0}' är ej ett korrekt värde för {1}.", value, displayName)

        ModelBinders.Binders.DefaultBinder = modelBinder

我想做的是覆盖错误数据输入的默认错误消息(“值 '{0}' 是对于 {1} 字段无效。)

我尝试获取默认模型绑定器以为其分配新的错误消息

Hi we are trying to upgrade our project to work in the latest version of VS 2010 and i have encountered a problem with the old Data Annotations Modelbinder.

Dim modelBinder = New DataAnnotationsModelBinder()

modelBinder.InvalidValueFormatter = _
Function(propDescriptor As PropertyDescriptor, value As String, displayName As String) _
String.Format("'{0}' är ej ett korrekt värde för {1}.", value, displayName)

        ModelBinders.Binders.DefaultBinder = modelBinder

What Im trying to do is to overide the default errormessage for wrong datainput ("The value '{0}' is not valid for the {1} field.)

I try to get the default modelbinder to assign it a new errormessage

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小猫一只 2024-10-04 13:44:17

我发现这篇关于这个问题的文章解决了我的问题:

http://forums.asp .net/p/1512140/3606268.aspx#3606268

I found this post about this problem which solved my problem:

http://forums.asp.net/p/1512140/3606268.aspx#3606268

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