溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Spring Boot+AngularJS+BootStrap如何實(shí)現(xiàn)進(jìn)度條

發(fā)布時間:2021-06-30 14:35:44 來源:億速云 閱讀:227 作者:小新 欄目:web開發(fā)

小編給大家分享一下Spring Boot+AngularJS+BootStrap如何實(shí)現(xiàn)進(jìn)度條,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

Spring Boot+AngularJS+BootStrap實(shí)現(xiàn)進(jìn)度條

原理

進(jìn)度條的原理是在上傳文件的時候,當(dāng)程序運(yùn)行到某一個部分,往Session中設(shè)置一個1到100的值。然后前臺再每隔很小的一段時間去請求這個值。

在AngularJS中,$http對象有3種狀態(tài),分別是success,progress,error,其中progress方法就會在success方法調(diào)用之前(也就是上傳完成之前),不斷地調(diào)用。而我們要做的就是在progress中在添加一個請求,去后臺拿我們設(shè)置在session中的值。

代碼,這里我用了一個插件用來上傳文件,叫ng-file-upload

html

<input type="file" data-ng-model="file">

<uib-progress data-ng-show="progress">
  <uib-bar value="progress" type="{{type}}" data-ng-bind="progress + '%'"/>
</uib-progress>
<span class="err" data-ng-show="isShowMsg" data-ng-bind="Msg"></span>
<button class="btn btn-primary" type="button" data-ng-click="upload()">確認(rèn)</button>

js

Upload.upload(
        {
          url: "",
          data: {
            file: file
          },
          method: 'post'
        }).then(function (res) {
          //這里是success方法
          $scope.isShowMsg = true;
          $scope.Msg = res.data.msg;
          if($scope.Msg == "導(dǎo)入數(shù)據(jù)不符合格式要求!")
          $scope.type = "progress-bar progress-bar-danger progress-bar-striped";//設(shè)置進(jìn)度條樣式
          else {
            $scope.type = "progress-bar progress-bar-success progress-bar-striped";
            $scope.progress = 100;//上傳成功之后,將進(jìn)度條設(shè)置為100
          }

        }, function (){
        //這里是error方法
        }, function (){
        //這里是progress方法
        $scope.type = "progress-bar progress-bar-info progress-bar-striped";

        $http({
        url:"",
        method: "get"
        }).success(function (res) {
            $scope.progress = res;//綁定進(jìn)度條的值
          })
        });

上傳部分代碼(只需要關(guān)注設(shè)置session的地方

public Map<String, Object> batchModify(InputStream inputStream,HttpSession session) {
    Map<String, Object> res = new HashMap<>();
    Workbook workbook = null;
    try {
      workbook = Util.createWorkbook(inputStream);
    } catch (InvalidFormatException | IOException e) {
      e.printStackTrace();
    }
    session.setAttribute("progress", 5);//解析成功后我將進(jìn)度設(shè)置為5
    Sheet sheet = workbook.getSheetAt(0);

    Map<String, Object> roleWithPages = new HashMap<>();
    for (int i = 1; i <= sheet.getLastRowNum(); i++) {
      Row r = sheet.getRow(i);
      if (r == null || r.getCell(0) == null || r.getCell(1) == null)
        continue;
      Set<Page> pages = null;
      if (roleWithPages.get(r.getCell(0).toString()) == null) {
        pages = new HashSet<>();
      } else {
        pages = (Set<Page>) roleWithPages.get(r.getCell(0).toString());
      }
      Page p = new Page();
      p.setId(Math.round(r.getCell(1).getNumericCellValue()));
      pages.add(p);
      roleWithPages.put(r.getCell(0).toString(), pages);
      session.setAttribute("progress", 5 + i*90/sheet.getLastRowNum());
      //我將處理文件主體進(jìn)度總量設(shè)置為90(5是加上解析部分的進(jìn)度)
    }

    List<Role> roles = new ArrayList<>();
    for (String rolename : roleWithPages.keySet()) {
      Role role = repo.findByName(rolename);
      role.setPages((Set<Page>) roleWithPages.get(rolename));
      roles.add(role);
    }
    repo.save(roles);
    session.setAttribute("progress", 100);//保存之后將進(jìn)度設(shè)置為100
    res.put("msg", "數(shù)據(jù)導(dǎo)入成功!");
    return res;
  }

進(jìn)度條部分代碼,很簡單,就是讀Session中progress的值

public int getProgress(HttpServletRequest request){
    return (int) request.getSession().getAttribute("progress");
  }

看完了這篇文章,相信你對“Spring Boot+AngularJS+BootStrap如何實(shí)現(xiàn)進(jìn)度條”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI