vue watch 深度监听对象修改参数,没有触发watch 已解决

  • Post author:
  • Post category:vue




Vue 深度监听

data() {
			return {
				dateshow: true,
				show: false,
				model: {}
			}
		},
		watch: {
			model: {
				
				handler: function(newValue) {
					console.log('chnage---', newValue)
					this.$emit('handlerValue', {
						value: newValue,
						rules: this.list.rules
					})
				},
				immediate: true, // 初始化数据触发watch
				deep: true // 对 对象进行深度监听
			}
		},



虽然对对象进行了深度监听,但是通过方法对数据进行修改时,视图是发生了变化,但是watch并没有监听到

confirmHandler(arr) {
					console.log('xialaxuanze', arr)
					this.model[this.list.model] = arr[0].label // 这种写法并不会触发watch监听
	
			}



如何让watch 监听到数据的变化 this.$set(target,key,value)

confirmHandler(arr) {
				// this.$set(target(对象),key(对象里的key),value(对象里的key对应的value))
					console.log('xialaxuanze', arr)
					this.$set(this.model,this.list.model,arr[0].label)// 这样就可以了
	
			}



版权声明:本文为weixin_43799811原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。