进度旋转器

发布于 2024-11-15 23:44:34 字数 481 浏览 0 评论 0原文

如何在 ajax 调用期间显示进度旋转器?我从 Link 获取了旋转器 gif,并且我进行 ajax 调用的代码正在使用 Dojo:

  dojo.xhrPost( { 
      form: formName, 
      sync: true,
      handleAs: "text", 
      load: function(response) {
       //Spinner should be called here.. How?
          //populate content here
           successMessage();
             }  ,
        error: function(error, ioargs){

          //do something with errors

How do I show a progress spinner during an ajax call? I got the spinner gif from Link and my code to make ajax call is using Dojo:

  dojo.xhrPost( { 
      form: formName, 
      sync: true,
      handleAs: "text", 
      load: function(response) {
       //Spinner should be called here.. How?
          //populate content here
           successMessage();
             }  ,
        error: function(error, ioargs){

          //do something with errors

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

自控 2024-11-22 23:44:34

具有全局 javascript 函数(例如 showAjaxWorking()hideAjaxWorking() 来显示/隐藏包含旋转图像的 div,定位在标准位置或特定的位置(如果适合) ..

showAjaxWorking();
dojo.xhrPost( { 
      form: formName, 
      sync: true,
      handleAs: "text", 
      load: function(response) {
       hideAjaxWorking();
           successMessage();
             }  ,
        error: function(error, ioargs){

          //do something with errors
           hideAjaxWorking();

Have global javascript functions (eg showAjaxWorking(), hideAjaxWorking() to show/hide a div containing a spinner image, positioned in a standard place, or somehwere specific if that suits..

showAjaxWorking();
dojo.xhrPost( { 
      form: formName, 
      sync: true,
      handleAs: "text", 
      load: function(response) {
       hideAjaxWorking();
           successMessage();
             }  ,
        error: function(error, ioargs){

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