根據appId匹配項目名稱
阿新 • • 發佈:2018-05-11
code this bsp tor .get use inf stat style
有時候後端返回的接口中也許沒有我們想要的字段,可以通過下面的方式拿到想要的字段
代碼如下:
//獲取項目名稱 getBizName(appId) { let proNameList = this.$store.state.mobileIndex.bizList; //包含appId和appName兩個字段 for (var index in proNameList) { var bizItem = proNameList[index]; if (bizItem.appId === appId) {return bizItem.name; } } },
//在下面函數中通過函數調用,獲取項目名稱 qureBizList(appid) { let InfoList = []; InfoList = this.$store.state.mobileIndex.userInfoList; //只有appId字段,沒有appName字段 for(var i =0;i<InfoList.length;i++){ var userItem = InfoList[i].appId; InfoList[i].appName= this.getBizName(userItem); //獲取appId對應的appName(項目名稱) } }
根據appId匹配項目名稱