MVC3 稳健远程验证的加载指示器

发布于 2024-12-07 16:18:49 字数 96 浏览 0 评论 0原文

我正在执行 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 技术交流群。

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

发布评论

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

评论(2

悟红尘 2024-12-14 16:18:49

您可以使用 ajaxStartajaxComplete 全局方法来做到这一点。

ajaxStart : http://api.jquery.com/ajaxStart/

ajaxComplete :< /code> http://api.jquery.com/ajaxComplete/

如果你想实现一些特定的加载指示器(例如例如,在文本内input),需要给JQuery绑定一些方法,并监听远程验证。然后,当它启动时,您可以触发指标启动方法,当它完成时,您可以将其取回。

You can do that with ajaxStart and ajaxComplete 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.

吾性傲以野 2024-12-14 16:18:49

使用下面的 Activity_pane ID 属性,

    jQuery('#activity_pane').showLoading();
jQuery('#activity_pane').load(
    '/path/to/my/url', 
    {},
    function() {
      //
      //this is the ajax callback 
      //
      jQuery('#activity_pane').hideLoading();
    }
);  

请参阅 http://contextllc。 com/dev_tools/jQuery/showLoading/latest/jquery.showLoading.example.html

另一个链接显示如何执行此操作 此处

Use your ID attribute for activity_pane below

    jQuery('#activity_pane').showLoading();
jQuery('#activity_pane').load(
    '/path/to/my/url', 
    {},
    function() {
      //
      //this is the ajax callback 
      //
      jQuery('#activity_pane').hideLoading();
    }
);  

see http://contextllc.com/dev_tools/jQuery/showLoading/latest/jquery.showLoading.example.html

Another link showing how to do this here.

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