码迷,mamicode.com
首页 > 其他好文 > 详细

vue 监听 watch 使用

时间:2018-05-21 14:41:15      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:tps   etc   put   com   声明   ros   targe   blank   lin   

1、api

https://cn.vuejs.org/v2/api/#watch

有2个配置:

(1)深度 watcher
deep: true
(2)
该回调将会在侦听开始之后被立即调用
immediate: true

2、使用场景
created(){
    this.fetchPostList()
},
watch: {
    searchInputValue(){
        this.fetchPostList()
    }
}

组件创建的时候我们获取一次列表,同时监听input框,每当发生变化的时候重新获取一次筛选后的列表这个场景很常见,有没有办法优化一下呢?

招式解析:
首先,在watchers中,可以直接使用函数的字面量名称;其次,声明immediate:true表示创建组件时立马执行一次

watch: {
    searchInputValue:{
        handler: ‘fetchPostList‘,
        immediate: true
    }
}

 

 

 

vue 监听 watch 使用

标签:tps   etc   put   com   声明   ros   targe   blank   lin   

原文地址:https://www.cnblogs.com/mengfangui/p/9066518.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!