MVC 不引人注目的验证。如何在无效元素内显示验证消息?

发布于 2024-12-11 08:30:41 字数 65 浏览 1 评论 0原文

如何使用 MVC Unobtrusive 验证显示无效元素内的验证消息?此外,当关注无效元素时,应显示用户输入的值。

How to display validation message inner invalid element with MVC Unobtrusive validation? Additionally, when focused on the invalid element should show a value that the user entered.

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

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

发布评论

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

评论(1

初心未许 2024-12-18 08:30:41

在大多数情况下,使用 ValidationMessageFor 帮助程序进行不显眼的验证非常简单:

  @Html.TextBoxFor(model => model.Item.Title)
  @Html.ValidationMessageFor(model => model.Item.Title)

但是请注意,MVC 中存在一个已知错误,该错误不会显示使用 TextArea 显示的嵌套模型属性的验证,因此

  @Html.TextAreaFor(model => model.Item.Title)
  @Html.ValidationMessageFor(model => model.Item.Title)

不起作用(在大多数情况下我无论如何都进行了测试) 。参考是 http://aspnet.codeplex.com/workitem/8576

In most cases unobtrusive validation is very simple using the ValidationMessageFor helper :

  @Html.TextBoxFor(model => model.Item.Title)
  @Html.ValidationMessageFor(model => model.Item.Title)

However note that there is a known bug in MVC which will not display the validation for nested model properties displayed using a TextArea, so

  @Html.TextAreaFor(model => model.Item.Title)
  @Html.ValidationMessageFor(model => model.Item.Title)

Will not work (in most circumstances I tested anyway). Ref is http://aspnet.codeplex.com/workitem/8576

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