⭐⭐
computed 是基於它的依賴緩存,只有在它的相關依賴發生改變時才會進行更新。官方文件是這樣說的:對於任何包含響應式資料的複雜邏輯,你都應該使用計算屬性。 (學習影片分享:vue影片教學)
⭐⭐
拼接字串、分數是否及格、message記錄一段文字,這裡是用computed實現的
<div id="app"> <!-- 插值语法表达式直接进行拼接 --> <!-- 1.拼接姓名 --> <h2>{{fullname}}</h2> <!-- 2.显示分数及格或不及格 --> <h2>{{scorelevel}}</h2> <!-- 3.反转单词 --> <!-- reverse针对于数组,先用split转为数组,在用reverse --> <h2>{{reversetext}}</h2> </div> <script src="../lib/vue.js"></script> <script> const app = Vue.createApp({ data() { return { // name firstName: "kk", lastName: "cc", // score score: 99, // 文本中单词反转 message: "I love stydy Vue3", }; }, computed: { fullname() { return this.firstName + " " + this.lastName; }, scorelevel() { return this.score >= 60 ? "及格" : "不及格"; }, reversetext() { return this.message.split(" ").reverse().join(" "); }, }, }); app.mount("#app");
#當然我們用Mustache插值語法、methods也是可以完成的,但是對於復雜數據的處理,我們往往採用computed,寫法更清晰,且計算屬性是有快取的
⭐⭐
&tinsp;
所以這也是我們在複雜資料處理時更傾向於computed
在使用相同次數的fullName時,methods執行三次,computed執行一次,這正是因為computed計算屬性會被快取
1.4.計算屬性computed的setter和getter
#⭐⭐
大多數情況下,計算屬性只需要一個getter方法,那麼此時computed屬性屬性值為函數
如果想要設定計算屬性的值,我們可以為計算屬性設定一個setter方法
computed: { // 语法糖 fullname() { return this.firstname + " " + this.lastname; }, // 完整写法 fullname: { get: function () { return this.firstname + " " + this.lastname; }, set: function (value) { const names = value.split(" "); this.firstname = names[0]; this.lastname = names[1]; }, },
以上是聊聊Vue中的計算屬性computed的詳細內容。更多資訊請關注PHP中文網其他相關文章!