溫馨提示×

溫馨提示×

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

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

Vue計算屬性是什么

發(fā)布時間:2021-07-15 14:51:05 來源:億速云 閱讀:130 作者:小新 欄目:web開發(fā)

這篇文章主要為大家展示了“Vue計算屬性是什么”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Vue計算屬性是什么”這篇文章吧。

具體內容如下

①模板內的表達式實際上只用于簡單的運算,對于復雜邏輯,使用計算機屬性。

②基礎例子:

<div id = "example"> 
 <p>Original message:"{{message}}"</p> 
 <p>Computed reversed message:"{{reversedMessage}}"</p> 
</div>
var vm = new Vue({ 
 el:"#example", 
 data:{ 
 message:"Hello" 
 }, 
 computed:{ 
 //a computed getter 
 reversedMessage:function(){ 
  //'this' points to the vm instance 
  return this.message.split('').reverse().join('') 
 } 
 } 
})

這里我們聲明了一個計算機屬性reversedMessage,我們提供的函數(shù)將用作屬性vm.reversedMessage的getter。

③計算機緩存 vs Methods

可以通過調用表達式中的method來達到同樣的效果:

<p>Reversed message:"{{reversedMessage}}"</p>
//in component 
methods:{ 
 reversedMessage:function(){ 
 return this.message.split('').reverse()/join('') 
 } 
}

可以將同一個函數(shù)定義為一個method而不是一個計算機屬性。對于最終的結果,兩種方式確實是相同的。然而不同的計算機屬性是基于它們的依賴進行緩存的。計算屬性只有在它的相關依賴發(fā)生改變時才會重新求值,這就意味著只要message還沒有改變,多次訪問reversedMessage計算屬性會立即返回之前的計算結果,而不必再次執(zhí)行函數(shù)。
下面的計算屬性將不再更新,因為Date.now()不是響應式依賴:

computed:{ 
 now:function(){ 
 return Date.now() 
 } 
}

只要發(fā)生重新渲染,method調用總會執(zhí)行該函數(shù)。

④computed屬性 vs watch屬性

<div id= "demo">{{fullName}}</div>

watch:

var vm = new Vue({ 
 el:"#demo", 
 data:{ 
 firstName:"Foo", 
 lastName:"Bar", 
 fullName:"Foo Bar" 
 }, 
 watch:{ 
 firstName:function(val){ 
  this.fullName = val + '' + this.lastName 
 }, 
 lastName:function(val){ 
 this.fullName = this.firstName + '' +val 
 } 
 } 
})

computed:

var vm = new Vue({ 
 el:'#demo', 
 data:{ 
 firstName:'Foo', 
 lastName:'Bar' 
 }, 
 computed:{ 
 fullName:function(){ 
  return this.firstName + ' ' + this.lastName 
 } 
 } 
})

⑤計算setter:

計算屬性默認只有getter,不過在需要是可以提供一個setter:

// ... 
computed: { 
 fullName: { 
 // getter 
 get: function () { 
  return this.firstName + ' ' + this.lastName 
 }, 
 // setter 
 set: function (newValue) { 
  var names = newValue.split(' ') 
  this.firstName = names[0] 
  this.lastName = names[names.length - 1] 
 } 
 } 
} 
// ...

在運行vm.fullName = 'John Doe'時,setter會被調用,vm.firstName和vm.lastName  也相應的會被更新。

⑥觀察watchers

    當想要在數(shù)據(jù)變化相應時,執(zhí)行異步操作或開銷較大的操作,這是很有用的。

<div id="watch-example"> 
 <p> 
 Ask a yes/no question: 
 <input v-model="question"> 
 </p> 
 <p>{{ answer }}</p> 
</div>
<script src="https://unpkg.com/axios@0.12.0/dist/axios.min.js"></script> 
<script src="https://unpkg.com/lodash@4.13.1/lodash.min.js"></script> 
<script> 
var watchExampleVM = new Vue({ 
 el: '#watch-example', 
 data: { 
 question: '', 
 answer: 'I cannot give you an answer until you ask a question!' 
 }, 
 watch: { 
 // 如果 question 發(fā)生改變,這個函數(shù)就會運行 
 question: function (newQuestion) { 
  this.answer = 'Waiting for you to stop typing...' 
  this.getAnswer() 
 } 
 }, 
 methods: { 
 // _.debounce 是一個通過 lodash 限制操作頻率的函數(shù)。 
 // 在這個例子中,我們希望限制訪問yesno.wtf/api的頻率 
 // ajax請求直到用戶輸入完畢才會發(fā)出 
 // 學習更多關于 _.debounce function (and its cousin 
 // _.throttle), 參考: https://lodash.com/docs#debounce 
 getAnswer: _.debounce( 
  function () { 
  var vm = this 
  if (this.question.indexOf('?') === -1) { 
   vm.answer = 'Questions usually contain a question mark. ;-)' 
   return 
  } 
  vm.answer = 'Thinking...' 
  axios.get('https://yesno.wtf/api') 
   .then(function (response) { 
   vm.answer = _.capitalize(response.data.answer) 
   }) 
   .catch(function (error) { 
   vm.answer = 'Error! Could not reach the API. ' + error 
   }) 
  }, 
  // 這是我們?yōu)橛脩敉V馆斎氲却暮撩霐?shù) 
  500 
 ) 
 } 
}) 
</script>

 在這個示例中,使用watch選項允許我們執(zhí)行異步操作,限制我們執(zhí)行該操作的頻率,并在得到最終結果前,設置中間狀態(tài),這是計算屬性無法做到的。

以上是“Vue計算屬性是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

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

vue
AI