如何使用角度js实现进度条处理多个请求?

时间:2015-06-26 10:48:25

标签: html css angularjs

我创建了多个订单,现在我必须确认所有这些 订单,但除非所有订单得到确认,否则我必须显示 进度条,必须显示已订购已确认的状态

即。假设我已确认10个订单然后是1/10然后2/10然后3/10    ... 10/10在后台确认订单的状态。

下面我有一个例子,但不符合要求..

angular.module("app", []) .controller("main", ['$scope',
   function($scope) {
       $scope.value = 10
       $scope.items = [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100] }]) .directive('progressbar', [function() {
       return {
           restrict: 'A',
           scope: {
               'progress': '=progressbar'
           },
           controller: function($scope, $element, $attrs) {
               $element.progressbar({
                   value: $scope.progress
               })
   
               $scope.$watch(function() {
                   $element.progressbar({value: $scope.progress})
               })
           }
       } }])

1 个答案:

答案 0 :(得分:0)

我曾经使用过以下模板:

你可以使用它:

http://victorbjelkholm.github.io/ngProgress/