Vue.js เริ่มต้น ตอน6 (Computed Properties and Watchers)

27 May 2018,
Share: 

ก่อนหน้านี้เราได้เรียนรู้กันไปแล้วว่าใน Template จะจัดการเกี่ยวกับการแสดงผล ซึ่งในบางครั้งเราจําเป็นต้องนํา Logic บางอย่างใส่เข้าไปใน Template ด้วย ซึ่งเราก็จะใส่ไปแบบนี้

<div id="example">
  {{ message.split('').reverse().join('') }}
</div>

แบบนี้ก็ไม่ผิดครับ แต่จะยากลําบากเมื่อเรา Maintain ระบบ Vue.js ก็แก้ปัญหาโดยแยกมันออกมาซะ โดยเรียกมันว่า Computed แบบนี้ครับ

<template>
  <div id="example">
    <p>Original message: "{{ message }}"</p>
    <p>Computed reversed message: "{{ reversedMessage }}"</p> <br />
  </div>
</template>

<script>
export default {
  name: 'MyComponent',
  data: function () {
    return {
      message: 'Hello'
    }
  },
  computed: {
    // a computed getter
    reversedMessage: function () {
      // `this` points to the vm instance
      return this.message.split('').reverse().join('')
    }
  }
}
</script>

จะได้แบบนี้ครับ

Image

ข้อมูลของ reversedMessage จะขึ้นอยู่กับ message เมื่อ message เปลี่ยน จะรัน reversedMessage ใหม่

Computed vs Methods

โดยปกติแล้วเราสามารถใช้ Method ได้เหมือนกัน แบบนี้

<template>
  <div id="example">
    <p>Reversed message: "{{ reverseMessage() }}"</p>
  </div>
</template>

<script>
export default {
  name: 'MyComponent',
  data: function () {
    return {
      message: 'Hello'
    }
  },
  methods: {
    reverseMessage: function () {
      return this.message.split('').reverse().join('')
    }
  }
}
</script>

ซึ่งจะได้ผลลัพธ์เหมือนกัน แต่มีมีสิ่งที่แตกต่างกันคือ Method จะเรียก Function ทุกครั้งที่ Component re-render ใหม่ ซึ่งต่างจาก Computed จะไม่เรียก Function เมื่อ ข้อมูลไม่เปลี่ยน ตัวอย่าง

<template>
  <div id="example">
    <p>Date: "{{ now }}"</p>
    <p>Date from Method: "{{ reverseMessageInMethod() }}"</p>
    <p>Date from Computed: "{{ reversedMessageInComputed }}"</p> <br />
    <button type="button" v-on:click="changeDate()">Click to update date</button>
  </div>
</template>

<script>
export default {
  name: 'MyComponent',
  data: function () {
    return {
      now: Date.now()
    }
  },
  methods: {
    changeDate: function () {
      this.now = Date.now()
    },
    reverseMessageInMethod: function () {
      return Date.now()
    }
  },
  computed: {
    // a computed getter
    reversedMessageInComputed: function () {
      // `this` points to the vm instance
      return Date.now()
    }
  }
}
</script>

ทุกครั้งที่กดปุ่ม Date from Method จะเปลี่ยนแปลง แต่ Date from Computed จะไม่เปลี่ยนแปลง เพราะว่า เมื่อ now เปลี่ยน ทําให้ Component ทําการ Render ใหม่ ส่งผลให้ Method reverseMessageInMethod() ถูกเรียกให้ทํางานอีกครั้ง แต่ Computed จะไม่ทํางานเนื่องจาก ข้อมูลใน function ไม่มีการเปลี่ยนแปลง ก็จะใช้ค่าเดิมก่อนหน้านี้

Computed vs Watched Property

Vue มีทางเลือกหลายทางที่จะเฝ้าดูการเปลี่ยนแปลงของข้อมูล และ Watched Property ก็เป็นอีกทางเลือกนึง การทํางานของ Watched Property  คือ เฝ้าดูว่าข้อมูลในตัวแปลที่เรากําหนดมีการเปลี่ยนแปลงหรือไม่ ถ้ามีการเปลี่ยนแปลงก็จะรันคําสั่งที่เราเขียนไว้ จะมีประโยชน์ในกรณีที่ เมื่อเราต้องการให้ ข้อมูล A เปลี่ยน แล้ว ข้อมูล B จะต้องเปลี่ยนด้วย ตัวอย่าง

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

<script>
export default {
  name: 'MyComponent',
  data: function () {
    return {
      firstName: 'Foo',
      lastName: 'Bar',
      fullName: 'Foo Bar'
    }
  },
  watch: {
    firstName: function (val) {
      this.fullName = val + ' ' + this.lastName
    },
    lastName: function (val) {
      this.fullName = this.firstName + ' ' + val
    }
  }
}
</script>

ซึ่งจะให้ผลลัพธ์เหมือนกันกับ Compute ตามตัวอย่างนี้

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

<script>
export default {
  name: 'MyComponent',
  data: function () {
    return {
      firstName: 'Foo',
      lastName: 'Bar'
    }
  },
  computed: {
    fullName: function () {
      return this.firstName + ' ' + this.lastName
    }
  }
}
</script>

ก็ลองเลือกใช้งานกันดูนะครับ นอกจากนี้เรายังสามารถนําค่าก่อนที่จะเปลี่ยนแปลงมาใช้งานใน Funtion ได้อีกด้วย

watch: {
  firstName: function (newVar, oldVar) {
    ...
  }
}

Computed Setter

โดย Default Computed จะเป็น Read only หรือ 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]
    }
  }
}
// ...

เมื่อเรารันคําสั่ง this.fullName = ‘John Doe’ Setter ก็จะทํางานครับ จบ!!! โปรดคิดตามตอนต่อไป…

Suggestion blogs

วิธีป้องกันสแปมรบกวนใน iMessage

สําหรับผู้ใช้งาน iPhone ในช่วงนี้ได้รับข้อความสแปมใน iMessage ทําให้บางคนเกิมความกังวลในเรื่องของความปลอดภัย และเกิดความรำคาญ ในความเป็นจริงแล้วเราไม่ต้องสนใจ ไม่ต้องไปกด Link ต่างๆที่ส่งเข้ามาก็ได้ครับ ไม่มีผลกระทบใดๆกับเครื่องของเราแต่อย่างใด แต่สําหรับใครที่ยังรำคาญ เราก็สามารถ Setting เพื่อโยนข้อความ iMessage ที่ถูกส่งมาจากบุคคลอื่น (บุคคลที่ไม่ได้อยู่ในรายชื่อใน Contact ของเรา) แยกไปอยู่ใน Unknown Senders และก็จะไม่มีการแจ้งเตือนให้หน้ารําคาญ สามารถ Setting ได้ตามวิธีดังนี้ครับ

การใช้งาน Generic type ใน TypeScript

สวัสดีครับในบทความนี้เราจะมาเรียนรู้การใช้งาน Generic Type ใน TypeScript กันครับ

Singleton pattern

Singleton pattern เป็น Design pattern ที่ใช้จํากัดจํานวนของอ็อบเจกต์ที่ถูกสร้างในขณะที่โปรแกรมทํางาน จะมีประโยชน์ในกรณีที่ระบบงานต้องการบังคับให้มีแค่อ็อบเจกต์เดียวเพื่อไม่ให้เกิดการซํ้าซ้อนกันเช่น Class ที่ใช้ในการควบคุม Hardware 1 ตัว ในการควบคุม Hardware 1 ตัวถ้าสร้างอ็อบเจกต์เพื่อควบคุมขึ้นมาหลายตัวอาจจะทําให้เกิดปัญหาในการควบคุม Hardware ได้


Copyright © 2019 - 2025 thiti.dev |  v1.58.0 |  Privacy policy | 

Build with ❤️ and Astro.

Github profile   Linkedin profile   Instagram   X profile   Nostr   Youtube channel   Telegram   Email contact   วงแหวนเว็บ