如何在asp.net mvc3中使用数据注释进行远程验证时显示ajax加载程序图像

发布于 2024-11-24 12:01:49 字数 138 浏览 1 评论 0原文

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

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

发布评论

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

评论(3

浅黛梨妆こ 2024-12-01 12:01:49

我认为如果不自己编写验证代码就无法做到这一点。

参见这篇文章:
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.

撞了怀 2024-12-01 12:01:49

您可以使用 $.ajaxStart .ajaxStop 来实现此目的:

$("#yourRegisterFormToValidate")
          .ajaxStart(function () { $(".loader").show(); })
          .ajaxStop (function () { $(".loader").hide(); });

You can use $.ajaxStart .ajaxStop for this purpose:

$("#yourRegisterFormToValidate")
          .ajaxStart(function () { $(".loader").show(); })
          .ajaxStop (function () { $(".loader").hide(); });
ζ澈沫 2024-12-01 12:01:49

如果是我,我会希望阻止用户在验证之前将数据输入到任何其他字段中,因此我会使用 AjaxOptions 来指定动画和该动画的持续时间。

我想要的东西是这样的:

@{
    AjaxOptions ajaxOpts = new AjaxOptions
    {
        UpdateTargetId = "updateDiv",
        LoadingElementId = "myImg",
        LoadingElementDuration = 2000,        
        HttpMethod = "GET"        
    };    
}

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:

@{
    AjaxOptions ajaxOpts = new AjaxOptions
    {
        UpdateTargetId = "updateDiv",
        LoadingElementId = "myImg",
        LoadingElementDuration = 2000,        
        HttpMethod = "GET"        
    };    
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文