What is a listener in vue
Official definition : Vue provides a more general method to respond to data changes through the watch option. This approach is most useful when you need to perform asynchronous or expensive operations when data changes. An object where the keys are the reactive properties to listen to - either containing data or computed properties - and the values are the corresponding callback functions. The value can also be a method name, or an object containing additional options. The component instance will call $watch() when instantiated. See $watch for more information about the deep, immediate and flush options. Usage of Listener Option: Type: Configuration options for the watch listener: By default, watch only listens to changes in data references and does not respond to changes in internal properties of the data: At this time, we can use an option deep to listen more deeply; another property is that we hope to execute it immediately at the beginning: at this time, we use the immediate option; at this time, no matter whether the data changes later, the listening function will be executed once; Contents of data: data() { return { info: name: 'cgj' } } } watch: info: handler(newValue, oldValue) { console.log(newValue, oldValue) } deep: true, immediate: true, } } Another thing that is not mentioned in the Vue3 documentation, but is mentioned in the Vue2 documentation is the properties of the listening object: 'info.name': function(newValue, oldValue) { console.log(newValue, oldValue) } Another way is to use the $watch API: For more information about $watch, see the official API (less commonly used): Example method | Vue.js const app = createApp({ data() { return { a: 1, b: 2, c: { d: 4 }, e: 5, f: 6 } }, watch: // Listen to the top-level property a(val, oldVal) { console.log(`new: ${val}, old: ${oldVal}`) }, // string method name b: 'someMethod', // This callback will be called when the property of any monitored object changes, no matter how deeply it is nested c: { handler(val, oldVal) { console.log('c changed') }, deep: true }, // Listen to a single nested property 'c.d': function (val, oldVal) { // do something }, // This callback will be called immediately after listening starts e: { handler(val, oldVal) { console.log('e changed') }, immediate: true }, // You can pass an array of callbacks and they will be called one by one f: [ 'handle1', function handle2(val, oldVal) { console.log('handle2 triggered') }, { handler: function handle3(val, oldVal) { console.log('handle3 triggered') } /* ... */ } ] }, methods: { someMethod() { console.log('b changed') }, handle1() { console.log('handle 1 triggered') } } }) const vm = app.mount('#app') vm.a = 3 // => new: 3, old: 1 vue listener-watch Goal: Can listen to data/computed property value changes grammar: watch: "The name of the property being listened to" (newVal, oldVal){ } } Example code: <template> <div> <input type="text" v-model="name"> </div> </template> <script> export default { data(){ return { name: "" } }, // Goal: Listen for changes in name value/* grammar: watch: variable name(newVal, oldVal){ // The variable name corresponding to the value changes here automatically triggered} } */ watch: // newVal: current value // oldVal: previous value name(newVal, oldVal){ console.log(newVal, oldVal); } } } </script> <style> </style> Summary : To listen to a property change, use the watch method Vue listener - deep listening and immediate execution Goal: Can listen to data/computed property value changes grammar: watch: "The name of the property being listened to" (newVal, oldVal){ } } Example code: <template> <div> <input type="text" v-model="user.name"> <input type="text" v-model="user.age"> </div> </template> <script> export default { data(){ return { user: { name: "", age: 0 } } }, // Target: Listening object/* grammar: watch: variable name(newVal, oldVal){ // The variable name corresponding to the value changes here automatically triggered}, Variable name: { handler(newVal, oldVal){ }, deep: true, // deep listening (value changes in the object's inner layer) immediate: true // Listen immediately (handler is executed once when the webpage is opened) } } */ watch: user: { handler(newVal, oldVal){ //Object in userconsole.log(newVal, oldVal); }, deep: true, immediate: true } } } </script> <style> </style> Summary : immediate listening, deep listening, handler fixed method triggering SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to use CSS pseudo-elements to control the style of several consecutive elements
>>: The most detailed method to install docker on CentOS 8
The cause is that the process opens a number of f...
When looking at High Performance MySQL Version 3 ...
Have you ever had the need to compute a very larg...
1. MySQL rpm package installation # Download the ...
This article uses examples to illustrate the prin...
Browser compatibility is the most important part ...
If your DOCTYPE is as follows: Copy code The code ...
Table of contents Preface Single file components ...
123WORDPRESS.COM provides you with the FileZilla ...
Table of contents 1. Please explain what are the ...
When the amount of data in MySQL is large, limit ...
Table of contents Preface 1. DDL 1.1 Database Ope...
This article will use Docker containers (orchestr...
When installing mha4mysql, the steps are roughly:...
When there is a lot of data to be displayed, the ...