最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Vue Echarts渲染數(shù)據(jù)導致殘留臟數(shù)據(jù)的問題處理

 更新時間:2024年08月13日 09:20:52   作者:蘇生Susheng  
這篇文章主要介紹了Vue Echarts渲染數(shù)據(jù)導致殘留臟數(shù)據(jù)的問題處理,文中通過代碼示例給大家講解的非常詳細,對大家的學習或工作有一定的幫助,需要的朋友可以參考下

問題背景

前提說明:

  1. 不同組件中都使用了Echarts
  2. 多個組件在一個父組件中動態(tài)渲染
  3. 組件中存在多種數(shù)據(jù)渲染,有Echarts,也有集合,也有文本,這些數(shù)據(jù)放在一個集合對象中返回到前端
  4. Echarts中的數(shù)據(jù)從數(shù)據(jù)庫讀取出來(返回的是一個可以直接解析的option的JSON格式的數(shù)據(jù))
  5. 組件中使用mount掛載觸發(fā)獲取option數(shù)據(jù)
  6. 父組件中點擊上一條、下一條存在組件切換
  7. 不同組件切換時,組件確實重新加載,數(shù)據(jù)重新獲取,能夠重新渲染

問題說明:

  • 同組件的多條記錄切換,組件不會動態(tài)加載,mount中不會執(zhí)行獲取option數(shù)據(jù)的方法
  • 同組件多條記錄切換,Echarts中的數(shù)據(jù)會展示之前的殘留數(shù)據(jù)
  • 如果返回的集合中沒有option這條記錄,那么有Echarts中的數(shù)據(jù)會渲染切換之前的數(shù)據(jù)
  • 如果一個組件中渲染了兩個Echarts,當兩個option都沒有數(shù)據(jù)時,第一個的確不會渲染,但是第二個渲染的還是切換之前的數(shù)據(jù)

解決

問題1解決

問題:

  • 同組件的多條記錄切換,組件不會動態(tài)加載,mount中不會執(zhí)行獲取option數(shù)據(jù)的方法

解決:

  • 父組件中,根據(jù)組件名稱動態(tài)賦值ref屬性,根據(jù)ref屬性,直接在父組件中調(diào)用加載數(shù)據(jù)的方法
<component :ref="`detail_${detailCom}`" :is="detailCom" :summaryLabel="summaryLabel" :concernDetList="concernDetailList"></component>
	  //頁面切換
      changePage(type){
        if(this.concernDetailList.length === 0){
          this.detailCom = "Empty"
        }else {
          // 根據(jù)newVal來:1、展示對應的組件,2、更新接口
          if(type === "ABNORMAL_INDICATORS"){
            this.detailCom = "AbnormalIndicators"
            this.$refs.detail_AbnormalIndicators.getConcernDet_Msg(this.concernDetailList)
          }else if(type === "EMERGENCY_PLAN"){
            this.detailCom = "EmergencyPlan"
            this.$refs.detail_EmergencyPlan.getConcernDet_Msg(this.concernDetailList)
          }else if(type === "POLICY_INTERPRETATION"){
            this.detailCom = "PolicyInterpretate"
            //政策解讀  待定,頁面還未開發(fā)
            //this.$refs.detail_PolicyInterpretate.getConcernDet_Msg(this.concernDetailList)
          }else if(type === "TASK_TRACK"){
            this.detailCom = "TaskTracking"
            this.$refs.detail_TaskTracking.getConcernDet_Msg(this.concernDetailList)
          }else if(type === "SUPERVISION_REMINDER"){
            this.detailCom = "SuperveReminder"
            this.$refs.detail_SuperveReminder.getConcernDet_Msg(this.concernDetailList)
          }
        }
      },

缺陷:

  • 同組件不觸發(fā)動態(tài)加載不會出問題,但是不同組件或者初次進入時,組件是動態(tài)加載的,此時ref并沒有賦值,因此瀏覽器控制臺會有一個報錯,不過不影響使用,就沒管了

問題2解決

問題:

  • 同組件多條記錄切換,Echarts中的數(shù)據(jù)會展示之前的殘留數(shù)據(jù)
    解決:
  • 這個問題很簡單,只需要在Echarts渲染option數(shù)據(jù)時,清除舊數(shù)據(jù)就可以了,一個參數(shù)就能搞定
  • 原本是這么寫的:this.myChart.setOption(option);,現(xiàn)在這么寫:this.myChart.setOption(option,true);,避免上一次渲染的緩存干擾

問題3解決

問題:

  • 如果返回的集合中沒有option這條記錄,那么有Echarts中的數(shù)據(jù)會渲染切換之前的數(shù)據(jù)
		this.concernDetList.forEach((item)=>{
          let obj = {
            "name":item.detTitle,
            "value":item.columnContent1
          }
          if(item.sort == "1"){
            //詳情描述
            this.detailObj = obj
          }else if(item.sort == "3"){
            //異常診斷
            this.abnDiagnosisObj = obj
          }else if(item.sort == "4"){
            //建議方案推薦
            this.adviceObj = obj
          }else if(item.sort == "2"){
            //圖示區(qū)域
            this.resPersonList = JSON.parse(item.columnContent2 || "[]");
            this.myChart = this.$echarts.init(document.getElementById('lineEcharts'));
            option = JSON.parse(item.columnContent1 || "[]");
            console.log("============",option)
            // 加true參數(shù),避免上一次渲染的緩存干擾
            this.myChart.setOption(option,true);
            //響應屏幕寬高
            window.addEventListener('resize', () => {
              if (this.myChart) {
                this.myChart.resize();
              }
            });
          }
        })

解決:

  • 說到底還是this.myChart.setOption(option,true);這個true的問題
  • 這個問題只能在后臺處理,因為想要清空上一個Echarts中的option的話,必須要進到this.sort===2這個邏輯
  • 而現(xiàn)在的問題是后臺沒有查到對應的這條記錄時,壓根就不返回
  • 因此需要在后臺去判斷有沒有sort=2的記錄,如果沒有必須寫一個空的返回出來,這樣前端才能進到這個邏輯

問題4解決

問題:

  • 如果一個組件中渲染了兩個Echarts,當兩個option都沒有數(shù)據(jù)時,第一個的確不會渲染,但是第二個渲染的還是切換之前的數(shù)據(jù)
    解決:

  • 嘗試寫了好久的邏輯,一直都不知道還有個clear方法

  • 反正子組件不能這么寫:this.myChart.setOption([],true);,這么寫會報錯,直接讓第二個渲染方法不執(zhí)行,因此就不會渲染空數(shù)據(jù),也就會展示殘留的臟數(shù)據(jù)了

  • this.myChart.clear()完美解決問題

  • 父組件

      //頁面切換
      changePage(type){
        if(this.concernDetailList.length === 0){
          this.detailCom = "Empty"
        }else {
          // 根據(jù)newVal來:1、展示對應的組件,2、更新接口
          if(type === "ABNORMAL_INDICATORS"){
            this.detailCom = "AbnormalIndicators"
            this.$refs.detail_AbnormalIndicators.getConcernDet_Msg(this.concernDetailList)
          }else if(type === "EMERGENCY_PLAN"){
            this.detailCom = "EmergencyPlan"
            this.$refs.detail_EmergencyPlan.getConcernDet_Msg(this.concernDetailList)
          }else if(type === "POLICY_INTERPRETATION"){
            this.detailCom = "PolicyInterpretate"
            //政策解讀  待定,頁面還未開發(fā)
            //this.$refs.detail_PolicyInterpretate.getConcernDet_Msg(this.concernDetailList)
          }else if(type === "TASK_TRACK"){
            this.detailCom = "TaskTracking"
            this.$refs.detail_TaskTracking.getConcernDet_Msg(this.concernDetailList)
          }else if(type === "SUPERVISION_REMINDER"){
            this.detailCom = "SuperveReminder"
            this.$refs.detail_SuperveReminder.getConcernDet_Msg(this.concernDetailList)
          }
        }
      },
      // 上一條
      handlePre(){
        //獲取上一條的ID
        this.concernSummaryIndex = this.concernSummaryIndex - 1;
        const concernDetId = this.followList[this.concernSummaryIndex].summaryId;
        //根據(jù)上一條的ID查詢對應的詳情
        this.changeConcernDet(concernDetId,this.followList[this.concernSummaryIndex].type);
        this.summaryLabel = this.followList[this.concernSummaryIndex].summaryLabel
      },
      // 下一條
      handleNext(){
        //獲取下一條的ID
        this.concernSummaryIndex = this.concernSummaryIndex + 1;
        const concernDetId = this.followList[this.concernSummaryIndex].summaryId;

        //根據(jù)下一條的ID查詢對應的詳情
        this.changeConcernDet(concernDetId,this.followList[this.concernSummaryIndex].type);
        this.summaryLabel = this.followList[this.concernSummaryIndex].summaryLabel
      },
      changeConcernDet(concernDetId,type){
        const concernSummaryInfoQueryVO = {"summaryId":concernDetId};
        getConcernDet(concernSummaryInfoQueryVO).then((result)=>{
          //更新關注事項詳情
          this.concernDetailList = result.data;
          this.changePage(type);
        });
      }
  • 子組件
      getBarEcharts(option){
        this.myChart = this.$echarts.init(document.getElementById('barEcharts'));
        if(option.length === 0) {
          this.myChart.clear()
        }else{
          //圖示區(qū)域
          //let option = JSON.parse(item.columnContent1 || "[]");
          // 加true參數(shù),避免上一次渲染的緩存干擾
          this.myChart.setOption(option,true);
          //響應屏幕寬高
          window.addEventListener('resize', () => {
            if (this.myChart) {
              this.myChart.resize();
            }
          });
        }

      },
      getZhuEcharts(option){
        this.myChart2 = this.$echarts.init(document.getElementById('zhuEcharts'));
        if(option.length === 0) {
          this.myChart2.clear()
        }else{
          //let option = JSON.parse(item.columnContent2 || "[]");
          // 加true參數(shù),避免上一次渲染的緩存干擾
          this.myChart2.setOption(option,true);
          //響應屏幕寬高
          window.addEventListener('resize', () => {
            if (this.myChart2) {
              this.myChart2.resize();
            }
          });
        }

      },
      getConcernDet_Msg(list){
        this.detailObj={}
        this.myChart2 = null;
        this.myChart = null;
        if(list){
          this.concernDetList = list;
        }
        this.concernDetList.forEach((item)=>{
          if(item.sort == "1"){
            let obj = {
              "name":item.detTitle,
              "value":item.columnContent1
            }
            //詳情描述
            this.detailObj = obj
          }else if(item.sort == "2"){
            this.getBarEcharts(JSON.parse(item.columnContent1 || "[]"))
            this.getZhuEcharts(JSON.parse(item.columnContent2 || "[]"))
          }
        })
      },

以上就是Vue Echarts渲染數(shù)據(jù)導致殘留臟數(shù)據(jù)的問題處理的詳細內(nèi)容,更多關于Vue Echarts渲染后殘留臟數(shù)據(jù)的資料請關注腳本之家其它相關文章!

相關文章

  • Element的穿梭框數(shù)據(jù)量大時點擊全選卡頓的解決方案

    Element的穿梭框數(shù)據(jù)量大時點擊全選卡頓的解決方案

    本文主要介紹了Element的穿梭框數(shù)據(jù)量大時點擊全選卡頓的解決方案,文中通過示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-10-10
  • Vue mixins混入使用解析

    Vue mixins混入使用解析

    如果我們在每個組件中去重復定義這些屬性和方法會使得項目出現(xiàn)代碼冗余并提高了維護難度,針對這種情況官方提供了Mixins特性,這時使用Vue mixins混入有很大好處,下面就介紹下Vue mixins混入使用方法,需要的朋友參考下吧
    2023-02-02
  • Vue中的父子組件通訊以及使用sync同步父子組件數(shù)據(jù)

    Vue中的父子組件通訊以及使用sync同步父子組件數(shù)據(jù)

    這篇文章主要介紹了Vue中的父子組件通訊以及使用sync同步父子組件數(shù)據(jù),對vue感興趣的同學,可以參考下
    2021-04-04
  • vue之keepAlive使用案例詳解

    vue之keepAlive使用案例詳解

    這篇文章主要介紹了vue之keepAlive使用案例詳解,本篇文章通過簡要的案例,講解了該項技術的了解與使用,以下就是詳細內(nèi)容,需要的朋友可以參考下
    2021-09-09
  • vue中如何監(jiān)聽url地址欄參數(shù)變化

    vue中如何監(jiān)聽url地址欄參數(shù)變化

    這篇文章主要介紹了vue中如何監(jiān)聽url地址欄參數(shù)變化問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-03-03
  • vue項目中定義全局變量、函數(shù)的幾種方法

    vue項目中定義全局變量、函數(shù)的幾種方法

    這篇文章主要介紹了vue項目中定義全局變量、函數(shù)的幾種方法,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2019-11-11
  • 如何利用Vue元素指令自動合并tailwind類名

    如何利用Vue元素指令自動合并tailwind類名

    文章介紹了如何在Vue項目中使用tailwind-merge庫通過自定義指令自動合并Tailwind CSS類名,以解決樣式?jīng)_突和提高代碼的可維護性,本文通過實例代碼給大家介紹的非常詳細,感興趣的朋友跟隨小編一起看看吧
    2026-03-03
  • Vue3(二)集成Ant Design Vue

    Vue3(二)集成Ant Design Vue

    上一篇文章我們介紹了利用Vue3 創(chuàng)建Vue CLI 項目(一),接下來就來看看Vue3集成Ant Design Vue 的相關資料,需要的小伙伴可以參考一下文章的具體內(nèi)容
    2021-10-10
  • vue實現(xiàn)勻速輪播效果

    vue實現(xiàn)勻速輪播效果

    這篇文章主要為大家詳細介紹了vue實現(xiàn)勻速輪播效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-06-06
  • ant-design-vue中的table自定義格式渲染解析

    ant-design-vue中的table自定義格式渲染解析

    這篇文章主要介紹了ant-design-vue中的table自定義格式渲染,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-10-10

最新評論

海林市| 景德镇市| 焉耆| 六安市| 勐海县| 扬中市| 玉山县| 通山县| 光泽县| 阿城市| 四子王旗| 抚松县| 平定县| 太保市| 安平县| 渭源县| 东丽区| 鹿邑县| 根河市| 安阳县| 孟州市| 丽水市| 景洪市| 玉龙| 九江市| 南华县| 鄂托克前旗| 鲁山县| 改则县| 临猗县| 辽宁省| 聊城市| 芦山县| 天等县| 兴城市| 南宫市| 沁源县| 隆德县| 金坛市| 永济市| 杭锦后旗|