Meteor JS进度条

时间:2015-01-07 14:03:21

标签: meteor

我正在开发一个流媒体应用程序,其中用户将单击一个按钮,然后应用程序在内部进行api调用将结果附加到html。在api调用期间,我想向用户显示进度条,如何在流星中进行。

-Thanks。

1 个答案:

答案 0 :(得分:3)

添加一些有关进度条的确切需求的更多信息可能有所帮助。

在大多数情况下,我使用:https://github.com/zhouzhuojie/meteor-nprogress。您可以看到演示here

在您的情况下,用法如下:

'click #[buttonId]':function(){
   NProgress.start(); //this starts the progress bar

   Meteor.call('[method name]', function(err, res){
      if(res){
         //Do whatever you want with the result
         NProgress.end(); //this completes the progress bar
      }
   });
}