프런트엔드 데이터 처리 방법

하나의 대상 속성의 수로 법칙을 구성하는 그룹을 처리하다
// An highlighted block
     this.$route.params.item.map(deptInfo => {
        if (deptInfo.threeCompanyDept == threeCompanyDept) {
          tempList.push(deptInfo);
        }
      });

      console.log(tempList);
      this.secondList = tempList.filter((item, index) => {
        if (item.demandDeptId in ids) {
          tempList[ids[item.demandDeptId]].demandNum += item.demandNum;
          return false;
        } else {
          ids[item.demandDeptId] = index;
          return true;
        }
      });

좋은 웹페이지 즐겨찾기