当前位置:   article > 正文

vue中computed计算属性

vue中computed计算属性

 computed计算属性

        规则:

        1.使用已有的属性来计算不存在的属性

        2.默认调用一次get

        3.简写形式(函数)没有set方法,如果需要更改值必须使用对象写法,不能使用函数

        4.原理使用了Object.defineproperty(目标对象,名称,{get(),set(value)})

watch监听属性

        规则

        1.监听已有的属性

        2.immediate设置为true默认触发一次,false不会默认触发

        3.handler(新值,旧值)函数,当监听值发生改变时就会触发handler函数

        4.写法:第一种Vue实例中,第二种实例化vm.$watch("监听的属性",{})

        5.watch默认监听一层,需要监听多级如对象中的值,需要添加深度监听deep:true

        6.简写,只有handler函数,才可以简写。写法:监听的属性名(新值,旧值){}

computed与watch

    1.computed能做到的watch都可以,watch能做到的computed不一定能

    2.被Vue实例管理的函数最好都使用普通函数,不被Vue实例管理的函数最好都使用箭头函数,

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <div id="app">
  10. <select name="" id="" v-model="abc">
  11. <option :value="index" v-for="(item,index) of dataList" :key="index+item">
  12. {{item}}
  13. </option>
  14. </select>
  15. <select name="" id="">
  16. <option value="" v-for="(item,index) of baseList[abc]" :key="index+item">
  17. {{item}}
  18. </option>
  19. </select>
  20. <hr>
  21. <div>
  22. <h1>今天天气{{info}}</h1>
  23. <h2>{{userName}}</h2>
  24. <h3>{{obj.id}}</h3>
  25. <button @click="func()">点击切换天气</button>
  26. </div>
  27. </div>
  28. </body>
  29. <script src="../vue.js"></script>
  30. <script>
  31. Vue.config.productionTip = false;
  32. var vm = new Vue({
  33. el:"#app",
  34. data() {
  35. return {
  36. // abc:"1",
  37. dataList:["江西省","湖南省","广东省"],
  38. baseList:[
  39. ["南昌市","宜春市","赣州市","上饶市"],
  40. ["长沙市","株洲市","怀化市"],
  41. ["广州市","深圳市","潮汕市"],
  42. ],
  43. bool:true,
  44. userName:"",
  45. obj:{
  46. id:99
  47. }
  48. }
  49. },
  50. // computed计算属性
  51. // 规则:
  52. // 1.使用已有的属性来计算不存在的属性
  53. // 2.默认调用一次get
  54. // 3.简写形式(函数)没有set方法,如果需要更改值必须使用对象写法,不能使用函数
  55. // 4.原理使用了Object.defineproperty(目标对象,名称,{get(),set(value)})
  56. computed:{
  57. info(){
  58. return this.bool?"炎热":"凉爽";
  59. },
  60. // abc:{
  61. // get(){
  62. // console.log("触发了get");
  63. // return 2;
  64. // },
  65. // set(value){
  66. // console.log("触发了set");
  67. // console.log(value);
  68. // }
  69. // },
  70. abc(){
  71. console.log("触发了get");
  72. return 1;
  73. }
  74. },
  75. // watch监听属性
  76. // 规则
  77. // 1.监听已有的属性
  78. // 2.immediate设置为true默认触发一次,false不会默认触发
  79. // 3.handler(新值,旧值)函数,当监听值发生改变时就会触发handler函数
  80. // 4.写法:第一种Vue实例中,第二种实例化vm.$watch("监听的属性",{})
  81. // 5.watch默认监听一层,需要监听多级如对象中的值,需要添加深度监听deep:true
  82. // 6.简写,只有handler函数,才可以简写。写法:监听的属性名(新值,旧值){}
  83. watch:{
  84. bool:{
  85. immediate:false,
  86. handler(newValue,oldValue){
  87. console.log(newValue);
  88. console.log(oldValue);
  89. console.log(this);
  90. if(newValue==true){
  91. this.userName = "张三";
  92. this.obj.id = 100;
  93. }else{
  94. this.userName = "李四";
  95. this.obj.id = 99;
  96. }
  97. }
  98. },
  99. // obj:{
  100. // immediate:false,
  101. // deep:true,
  102. // handler(newValue,oldValue){
  103. // console.log(newValue);
  104. // console.log(oldValue);
  105. // }
  106. // },
  107. // bool(newValue,oldValue){
  108. // console.log(newValue);
  109. // console.log(oldValue);
  110. // console.log(this);
  111. // }
  112. },
  113. directives:{
  114. },
  115. methods: {
  116. func(){
  117. this.bool = !this.bool;
  118. }
  119. },
  120. })
  121. // vm.$watch("userName",{
  122. // immediate:true,
  123. // handler(newValue,oldValue){
  124. // console.log("---------------------");
  125. // console.log(newValue);
  126. // console.log(oldValue);
  127. // console.log(this);
  128. // }
  129. // })
  130. vm.$watch("userName",function(newValue,oldValue){
  131. console.log("---------------------");
  132. console.log(newValue);
  133. console.log(oldValue);
  134. console.log(this);
  135. })
  136. // computed与watch
  137. // 1.computed能做到的watch都可以,watch能做到的computed不一定能
  138. // 2.被Vue实例管理的函数最好都使用普通函数,不被Vue实例管理的函数最好都使用箭头函数,
  139. </script>
  140. </html>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/616346
推荐阅读
相关标签
  

闽ICP备14008679号