MVC 不引人注目的验证。如何在无效元素内显示验证消息?
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在大多数情况下,使用 ValidationMessageFor 帮助程序进行不显眼的验证非常简单:
但是请注意,MVC 中存在一个已知错误,该错误不会显示使用 TextArea 显示的嵌套模型属性的验证,因此
不起作用(在大多数情况下我无论如何都进行了测试) 。参考是 http://aspnet.codeplex.com/workitem/8576
In most cases unobtrusive validation is very simple using the ValidationMessageFor helper :
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
Will not work (in most circumstances I tested anyway). Ref is http://aspnet.codeplex.com/workitem/8576