* ?! Z' g+ t) q' _, ^9 _本章节,我们将为大家介绍 Vue.js 监听属性 watch,我们可以通过 watch 来响应数据的变化: 实例
/ X/ ]/ |- ^. P# g+ _7 G
* S) R! @& A4 r. Q0 b/ B1 k5 H ^2 X6 i- <div id = "computed_props">
1 T+ A0 c) J8 P. S# H - 千米 : <input type = "text" v-model = "kilometers">
9 R$ O# z5 A1 |0 C5 X2 c - 米 : <input type = "text" v-model = "meters">
1 V6 V4 r7 a9 U5 [: q - </div>
& Z! F: e- e8 Z/ H3 v% z - <p id="info"></p>& R4 y5 g: [ W
- <script type = "text/javascript">
) k3 n: `& z. @6 s! s - var vm = new Vue({- ^ S" z3 A% c# O7 A% S
- el: '#computed_props',' K9 `/ v9 ?8 A+ N
- data: {
! V) S4 ], l! n# G# Z - kilometers : 0,: f' J! L( U! W; ~8 C
- meters:0
- Z8 H" H& Z& S2 U4 x$ i$ F - },
5 i% ?) O# Y ?+ D1 E2 z: O - methods: {3 s" i. q7 [. w' ?) B( r6 X
- },7 q" m3 O5 k' r" h5 f. A
- computed :{
' B+ |, N% G: [. n0 U, [" ~ - },
8 A+ q& P5 @& q6 } - watch : {
" d# N( T7 V/ J6 B ]; } f2 @ - kilometers:function(val) {
+ n" Y h; U7 f - this.kilometers = val;
( L1 `% ~$ d5 s) q" Z - this.meters = val * 1000;
/ c8 A$ K; t) S. c5 C+ | - },2 v, q- {# x/ ~6 g' a2 G
- meters : function (val) {
2 L7 n' j2 l) }/ ^* ?- X2 r6 ? - this.kilometers = val/ 1000;, R) D- B/ f- ]! J1 v+ Z
- this.meters = val;
/ ?) V' J H Z' {1 } - }; a! U6 \9 ~+ b# h: j+ t6 Q# z
- }, e: w f3 W7 V6 [( N7 N* }
- });6 ^( V$ s5 Y# C& G
- // $watch 是一个实例方法
* _1 A2 m0 Z( a Q: U' a* b$ q/ t6 c - vm.$watch('kilometers', function (newValue, oldValue) {
, X4 y5 X3 V5 g/ l - // 这个回调将在 vm.kilometers 改变后调用
! p- T) P1 K0 ?) I - document.getElementById ("info").innerHTML = "修改前值为: " + oldValue + ",修改后值为: " + newValue;# V5 [' f4 n, Q+ i# C0 p& t
- })
2 f! a! o# S( j& d3 H - </script>
复制代码以上代码中我们创建了两个输入框,data 属性中, kilometers 和 meters 初始值都为 0。watch 对象创建了两个方法 kilometers 和 meters。 当我们再输入框输入数据时,watch 会实时监听数据变化并改变自身的值。
3 U1 \& {. ~3 M2 ?/ B7 E1 G A" `6 Y3 }: }
6 ]) h' N; e# g9 ]$ x0 K: I3 X, k6 C* r# R% Y* m
|