首頁 > 軟體

Vue中computed計算屬性和data資料獲取方式

2022-03-03 19:02:01

computed計算屬性和data資料獲取

獲取到資料(物件、陣列),擷取一部分顯示到頁面中,用computed計算屬性來實現擷取資料然後直接輸出到頁面。

<div class="detailBox">
  <h1 class="detailHead">{{ActiveData.title}}</h1>
  <div class="detailCon">
    <p><b>活動時間:</b>{{ActStart}} 至 {{ActEnd}}</p>
    <p><b>報名時間:</b>{{SigStart}} 至 {{SigEnd}}</p>
  </div>
</div>
data() {
   return {
     ActiveData:"",//活動詳情所有資料
  }
},
methods:{
//獲取對應的資料
    this.ActiveData = response.data.data;
}
computed:{
    ActStart(){
      console.log(this.ActiveData.activity_starttime);
      return this.ActiveData.activity_starttime.substring(5,11);
    },
    ActEnd(){
      return this.ActiveData.activity_endtime.substring(5,11);
    },
    SigStart(){
     return this.ActiveData.signup_starttime.substring(5,11);
    },
    SigEnd(){
      return this.ActiveData.signup_endtime.substring(5,11);
    },
  }

頁面如願顯示出想要的效果了,但是也報錯了!那是因為data裡的資料是在mouted中執行函數才獲取到資料,是在computed之後,所以在第一次computed計算時,data中的ActiveData資料還是空的,所以computed找不到ActiveData裡的資料。

就會報undefinded接著是Error in render: "TypeError:……"獲取到值後重新計算又出現了獲取到的值。

解決方法一

給要擷取的資料賦一個預設值,computed計算屬性會先去計算預設值,在獲取到新值後重新計算,就不會報undefinded的錯誤了。

data() {
    return {
      ActiveData:"",//活動詳情所有資料
      ActStarts:"",//活動開始時間
      ActEnds:"",//活動結束時間
      SigStarts:"",//報名開始時間
      SigEnds:"",//報名結束時間
    }
  }, 
 
methods:{
//獲取對應的資料
    this.ActiveData = response.data.data;
    this.ActStarts = response.data.data.activity_starttime;
    this.ActEnds = response.data.data.activity_endtime;
    this.SigStarts = response.data.data.signup_starttime
    this.SigEnds = response.data.data.signup_endtime
}
computed:{
    ActStart(){
      console.log(this.ActStarts);
      return this.ActStarts.substring(5,11);
    },
    ActEnd(){
      return this.ActEnds.substring(5,11);     
    },
    SigStart(){
      return this.SigStarts.substring(5,11);
    },
    SigEnd(){
      return this.SigEnds.substring(5,11);
    },
  }

解決方法二

在computed中增加if判斷,在data中的ActiveData裡有資料時才在computed中返回對應的資料

data() {
   return {
     ActiveData:"",//活動詳情所有資料
  }
},
methods:{
//獲取對應的資料
    this.ActiveData = response.data.data;
}
computed:{
    ActStart(){
      console.log(this.ActiveData.activity_starttime);
      if(this.ActiveData.activity_starttime !== undefined){
        return this.ActiveData.activity_starttime.substring(5,11);
      }
   },
   ActEnd(){
      if(this.ActiveData.activity_endtime !== undefined){
        return this.ActiveData.activity_endtime.substring(5,11);
      }
   },
   SigStart(){
      if(this.ActiveData.signup_starttime !== undefined){
        return this.ActiveData.signup_starttime.substring(5,11);
      }
   },
   SigEnd(){
       if(this.ActiveData.signup_endtime !== undefined){
        return this.ActiveData.signup_endtime.substring(5,11);
      }
   },
}

computed計算屬性取物件的值,第一次報錯undefined

程式碼如下:

  data() {
    return {
      limit:3,
      checkedIndex:0,
      addressList:[],
      isMdShow:false,
      addressId:""
    };
  },
  components: {
    NavHeader,
    NavFooter,
    NavBread,
    Modal
  },
  mounted(){
    this.init()
  },
    computed:{
    addressListFilter(){
      return this.addressList.slice(0,this.limit)
    },
    selectedAddressId(){
      
      // if(this.addressList.length>0){
       let data = this.addressList[this.checkedIndex].addressId
       console.log(this.addressList,"====")
       return data
      //  }
    }
  },

圖片:

注意,初始化的時候,addressList還是一個空陣列,那addressList[index]物件就不存在,肯定就沒有addressId這個屬性,所以會報undefined

報錯和列印值

解決方案

那我們現在可以知道,報錯的原因是第一次計算的時候,addressList還沒有賦值,所以,我們可以進行一個判斷,當addressList有值了我們在進行計算

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com