MVC3 稳健远程验证的加载指示器
我正在执行 MVC3 不可靠的远程验证来检查用户名可用性。
它工作正常,但加载验证消息需要相当长的时间!有什么方法可以在转换期间显示微调器/用户名可用检查消息吗?
I am doing the MVC3 unrobustive remote validation for checking username availability.
It works fine, but it takes quite some time load the validation message! Is there any way to show a spinner/user name available checking message during the transition?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
ajaxStart
和ajaxComplete
全局方法来做到这一点。ajaxStart :
http://api.jquery.com/ajaxStart/ajaxComplete :< /code> http://api.jquery.com/ajaxComplete/
如果你想实现一些特定的加载指示器(例如例如,在文本内
input
),需要给JQuery绑定一些方法,并监听远程验证。然后,当它启动时,您可以触发指标启动方法,当它完成时,您可以将其取回。You can do that with
ajaxStart
andajaxComplete
global methods.ajaxStart :
http://api.jquery.com/ajaxStart/ajaxComplete :
http://api.jquery.com/ajaxComplete/If you would like to implement some specific loading indicators (for example, inside the text
input
), you need to bind some methods with JQuery and listen to the remote validation. Then, when it kicks in, you can fire the indicator start method and when it is done, you can get it back.使用下面的 Activity_pane ID 属性,
请参阅 http://contextllc。 com/dev_tools/jQuery/showLoading/latest/jquery.showLoading.example.html
另一个链接显示如何执行此操作 此处。
Use your ID attribute for activity_pane below
see http://contextllc.com/dev_tools/jQuery/showLoading/latest/jquery.showLoading.example.html
Another link showing how to do this here.