当前位置:   article > 正文

微信小程序手动实现watch监听_怎么手动触发watch的监听

怎么手动触发watch的监听
  1. 传参第一个参数为this指向,
  2. 第二个参数为要监听的对象
  3. 剩余参数传要监听的属性
export const setWatcher = function(){
    let val = ''
    const _this = Array.prototype.shift.call(arguments)
    const obj = Array.prototype.shift.call(arguments)
    if(!obj){
        console.log('没有传要监听的对象,_this,obJ,xxx传递');
        return
    }
    for(let key in arguments){
        Object.defineProperty(obj,arguments[key],{
            set(value){
                //这里实现自己的逻辑就行了
                val = value
            },
            get(){
                return val
            }
        })
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/1007585
推荐阅读
  

闽ICP备14008679号