A brief talk about calculated properties and property listening in Vue

A brief talk about calculated properties and property listening in Vue

1. Computed properties

definition

  • Computed properties: The property to be used does not exist and must be calculated from existing properties. Computed properties require a new configuration item computed.
  • For Vue, the data in data is the attribute. As long as the data in Vue changes, the template will be re-parsed, and the method in the interpolation syntax will be called again.

principle

  • The underlying layer uses the getters and setters provided by the Object.defineproperty method.

When is the get function executed?

  • This is executed once during the initial read.
  • It will be called again when the dependent data changes.

Advantages

  • Compared with the methods implementation, it has an internal caching mechanism (reuse), which is more efficient and easier to debug.

Remark

  • The calculated properties will eventually appear on vm (Vue instance) and can be read and used directly.
  • If a computed property is to be modified, a set function must be written to respond to the modification, and the data that the calculation depends on must change in the set.

Syntax: 1. Abbreviated form:

 computed: {
     "Computed Property Name" () {
         return "value"
     }
 }

Requirement: Find the sum of 2 numbers and display it on the page

<template>
  <div>
    <p>{{ num }}</p>
  </div>
</template>

<script>
export default {
  data(){
    return {
      a: 10,
      b: 20
    }
  },
  // Computed properties:
  // Scenario: The value of a variable needs to be calculated using another variable/*
    grammar:
    computed: {
      ComputedPropertyName() {
        return value}
    }
  */
 // Note: Both computed and data attributes are variables - they cannot have the same name // Note 2: If a variable changes within a function, the result will be automatically recalculated and returned computed: {
    num(){
      return this.a + this.b
    }
  }
}
</script>

<style>

</style>

Grammar: 2. Complete writing:

Computed properties are written in the format of configuration objects: get and set functions are used in objects

The role of get: When someone reads fullName, get will be called and the return value will be used as the value of the calculated property (get must write return)

When is get called? 1. When fullName is read for the first time. 2. When the data it depends on changes.

 get(){
                console.log('get was called')
                // console.log(this) // this here is vm (Vue instance)
                return this.firstName + '-' + this.lastName
            },
            

set: When the value of a calculated property is modified, the parameter that is called receives the new value passed in.

  ...
  computed:{
      fullName:
          //What is the function of get? When someone reads fullName, get is called, and the return value is used as the value of fullName. //When is get called? 1. When fullName is read for the first time. 2. When the data it depends on changes.
          get(){
              console.log('get was called')
              // console.log(this) //This is vm
              return this.firstName + '-' + this.lastName
          },
          //When is set called? When fullName is modified.
          set(value){
              console.log('set',value)
              const arr = value.split('-')
              this.firstName = arr[0]
              this.lastName = arr[1]
          }
      }
  }
})    

2. Monitoring (listening) properties

<!-- When binding an event: @xxx="yyy" yyy can write some simple statements -->
<button @click="isHot = !isHot">Switch weather</button>

1. Monitoring attribute watch:

When the monitored attribute changes, the handler callback function is automatically called to perform related operations

The monitored attribute must exist before it can be monitored! !

      ...
      //Writing method 1. Pass in watch configuration to listen to ishot attribute watch:{
          isHot:{
              immediate:true, //Let the handler call during initialization //When will the handler be called? When isHot changes.
              
              handler(newValue,oldValue){
                  console.log('isHot has been modified', newValue, oldValue)
              }
          }
      }
  })
  
  
  // Method 2. Monitor via vm.$watch('isHot',{
   immediate:true, //Let the handler call during initialization, the default is false
   //When is the handler called? When isHot changes.
   handler(newValue,oldValue){ // There are two parameters, one is the new value and the other is the old value console.log('isHot has been modified',newValue,oldValue)
   }
})

2. Deep monitoring

Deep Monitoring:

  • 1) By default, the watch in Vue does not monitor changes in the internal values ​​of the object (one layer).
  • 2) Configuring deep:true can monitor changes in internal values ​​of objects (multi-layer).

Remark:

  • 1) Vue itself can monitor changes in the internal values ​​of objects, but the watch provided by Vue cannot do so by default!
  • 2) When using watch, decide whether to use deep monitoring based on the specific structure of the data.
data:{
	isHot:true,
	numbers:
		a:1,
		b:1
	}
},
watch:{
	// Monitor the change of a certain attribute in a multi-level structure (the original writing method needs to add quotation marks, and the abbreviation can be omitted, but in this case it must be added, otherwise an error will be reported)
	/* 'numbers.a': {
		handler(){
			console.log('a has been changed')
		}
	} */
	//Monitor the changes of all attributes in the multi-level structure numbers:{
		deep:true, // If this is not enabled, then the monitoring is whether the address of numbers has changed handler(){
			console.log('numbers changed')
		}
	}
}

Monitoring properties - shorthand

This can be abbreviated when there is only handler() in the monitoring properties and no other configuration items need to be enabled.

watch:{
	isHot(newValue,oldValue){
		console.log('isHot has been modified',newValue,oldValue,this)
	}
}

/* vm.$watch('isHot',function (newValue,oldValue) {
	console.log('isHot has been modified',newValue,oldValue,this)
}) */

3. Differences and principles

Difference between computed and watch

  • Watch can accomplish all the functions that computed can accomplish.
  • The functions that watch can complete may not be completed by computed. For example, watch can perform asynchronous operations.

Two important principles

  • All functions managed by Vue are best written as normal functions, so that this points to vm or component instance object.
  • All functions not managed by Vue (timer callback functions, ajax callback functions, Promise callback functions, etc.) are best written as arrow functions, so that this points to vm or component instance object.
watch:{
	firstName(val){
		setTimeout(()=>{
			console.log(this) //vue instance object, if a normal function is used, it returns Window
			this.fullName = val + '-' + this.lastName
		},1000);
	},
	lastName(val){
		this.fullName = this.firstName + '-' + val
	}
}

Summarize

This is the end of this article about calculated properties and property listening in Vue. For more relevant Vue calculated properties and property listening content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue calculated property implementation transcript
  • Vue computed properties
  • Introduction to Computed Properties in Vue
  • Vue uses calculated properties to complete the production of dynamic sliders
  • Vue monitoring properties and calculated properties
  • Computed properties and data acquisition methods in Vue
  • Do you know Vue's computed properties?
  • Three implementation methods of Vue's calculated property name case

<<:  Summary of important mysql log files

>>:  Detailed explanation of MySQL data rows and row overflow mechanism

Recommend

How to open port 8080 on Alibaba Cloud ECS server

For security reasons, Alibaba Cloud Server ECS co...

Introduction to HTML_PowerNode Java Academy

What is HTML? HTML is a language used to describe...

How to avoid the trap of URL time zone in MySQL

Preface Recently, when using MySQL 6.0.x or highe...

Example code for implementing the "plus sign" effect with CSS

To achieve the plus sign effect shown below: To a...

MySQL group query optimization method

MySQL handles GROUP BY and DISTINCT queries simil...

25 CSS frameworks, tools, software and templates shared

Sprite Cow download CSS Lint download Prefixr dow...

Installation tutorial of mysql5.7.21 decompression version under win10

Install the unzipped version of Mysql under win10...

Install ethereum/Ethereum from scratch under CentOS7

Table of contents Preface Add sudo write permissi...

The concept and characteristics of MySQL custom variables

A MySQL custom value is a temporary container for...

Share 9 Linux Shell Scripting Tips for Practice and Interviews

Precautions 1) Add interpreter at the beginning: ...

How to set mysql5.7 encoding set to utf8mb4

I recently encountered a problem. The emoticons o...