如何在asp.net mvc3中使用数据注释进行远程验证时显示ajax加载程序图像
在我的 asp.net mvc3 应用程序中,我正在使用数据注释进行远程验证(如果用户已存在)。它运行良好。我想知道为什么我可以在远程验证(ajax 请求)发生时在表单中的输入字段旁边显示 ajax 加载程序图像。
请帮助我
谢谢
in my asp.net mvc3 application i am doing remote validation if a user already exist using data annotation . it is working perfectly . i was wondering if there is any why i can show the ajax loader image beside the input field in the form while remote validation(ajax request) is taking place.
please help me
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为如果不自己编写验证代码就无法做到这一点。
参见这篇文章:
http://www.highoncoding.com/Articles/767_Remote_Validation_in_ASP_NET_MVC_3.aspx
在 AJAX 调用中您必须添加 beforeSend 来显示图像,然后完成后隐藏它。
I don't think you can do it without writing the validation code yourself.
See this article:
http://www.highoncoding.com/Articles/767_Remote_Validation_in_ASP_NET_MVC_3.aspx
Within the AJAX call you would have to add a beforeSend to display the image, then hide it on complete.
您可以使用 $.ajaxStart .ajaxStop 来实现此目的:
You can use $.ajaxStart .ajaxStop for this purpose:
如果是我,我会希望阻止用户在验证之前将数据输入到任何其他字段中,因此我会使用 AjaxOptions 来指定动画和该动画的持续时间。
我想要的东西是这样的:
If that was me, I would want to stop user from entering data into any other fields until this is validated, therefore I would use AjaxOptions to specify animation and duration of that animation.
I'd have something on the lines of: