项目场景:

vue在子组件用watch监听器观测prop接收的父组件对象option,如下:

在这里插入图片描述


问题描述:

浏览器发出了报错:
[Vue warn]: Error in callback for watcher “option”: “TypeError: Cannot read property ‘apply’ of undefined”
TypeError: Cannot read property ‘apply’ of undefined
以下是我的代码:

watch: {
	// 只需要关注 option ,handle ,deep 即可
    option: {
        handle(newVal, oldVal) {
            this.params = Object.assign(this.params, newVal);
            this.init();
        },
        deep: true
    }
},

原因分析:

其中:
  1. option是一个对象,使用props从父组件接收;
  2. handle是它的处理函数,会接收一个变化后的 newVal 和变化前的值 oldVal
  3. deep:true表示开启深度监听,会检测到option内的属性

监听器的处理函数并不是随意起的,问题出在 handle 这个函数名字


解决方案:

把 handle 改成 handler 即可,变更后:
watch: {
    option: {
        handler(newVal, oldVal) {
            this.params = Object.assign(this.params, newVal);
            this.init();
        },
        deep: true
    }
},

这样就可以深度监听对象属性值的变化了

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐