您尚未登录,请登录后浏览更多内容! 登录 | 立即注册

QQ登录

只需一步,快速开始

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 12164|回复: 0
打印 上一主题 下一主题

[Vue.js] Vue.js 监听属性

[复制链接]
跳转到指定楼层
楼主
发表于 2018-7-4 11:05:03 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

* ?! 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
  1. <div id = "computed_props">
    1 T+ A0 c) J8 P. S# H
  2.     千米 : <input type = "text" v-model = "kilometers">
    9 R$ O# z5 A1 |0 C5 X2 c
  3.     米 : <input type = "text" v-model = "meters">
    1 V6 V4 r7 a9 U5 [: q
  4. </div>
    & Z! F: e- e8 Z/ H3 v% z
  5. <p id="info"></p>& R4 y5 g: [  W
  6. <script type = "text/javascript">
    ) k3 n: `& z. @6 s! s
  7.     var vm = new Vue({- ^  S" z3 A% c# O7 A% S
  8.     el: '#computed_props',' K9 `/ v9 ?8 A+ N
  9.     data: {
    ! V) S4 ], l! n# G# Z
  10.         kilometers : 0,: f' J! L( U! W; ~8 C
  11.         meters:0
    - Z8 H" H& Z& S2 U4 x$ i$ F
  12.     },
    5 i% ?) O# Y  ?+ D1 E2 z: O
  13.     methods: {3 s" i. q7 [. w' ?) B( r6 X
  14.     },7 q" m3 O5 k' r" h5 f. A
  15.     computed :{
    ' B+ |, N% G: [. n0 U, [" ~
  16.     },
    8 A+ q& P5 @& q6 }
  17.     watch : {
    " d# N( T7 V/ J6 B  ]; }  f2 @
  18.         kilometers:function(val) {
    + n" Y  h; U7 f
  19.             this.kilometers = val;
    ( L1 `% ~$ d5 s) q" Z
  20.             this.meters = val * 1000;
    / c8 A$ K; t) S. c5 C+ |
  21.         },2 v, q- {# x/ ~6 g' a2 G
  22.         meters : function (val) {
    2 L7 n' j2 l) }/ ^* ?- X2 r6 ?
  23.             this.kilometers = val/ 1000;, R) D- B/ f- ]! J1 v+ Z
  24.             this.meters = val;
    / ?) V' J  H  Z' {1 }
  25.         }; a! U6 \9 ~+ b# h: j+ t6 Q# z
  26.     }, e: w  f3 W7 V6 [( N7 N* }
  27.     });6 ^( V$ s5 Y# C& G
  28.     // $watch 是一个实例方法
    * _1 A2 m0 Z( a  Q: U' a* b$ q/ t6 c
  29.     vm.$watch('kilometers', function (newValue, oldValue) {
    , X4 y5 X3 V5 g/ l
  30.     // 这个回调将在 vm.kilometers 改变后调用
    ! p- T) P1 K0 ?) I
  31.     document.getElementById ("info").innerHTML = "修改前值为: " + oldValue + ",修改后值为: " + newValue;# V5 [' f4 n, Q+ i# C0 p& t
  32. })
    2 f! a! o# S( j& d3 H
  33. </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
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 支持支持 反对反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

GMT+8, 2024-12-22 12:01 , Processed in 0.110066 second(s), 19 queries .

Copyright © 2001-2024 Powered by cncml! X3.2. Theme By cncml!