监听对象
plinedata: {},
赋值部分
//创建plinedata键,赋值为列表
if (!this.plinedata[analysisobj.ID]) {
this.plinedata[analysisobj.ID] = []
}
//像plinedata对象对应设备ID添加坐标对象
this.plinedata[analysisobj.ID].push(poingobj)
监听函数
plinedata: {
handler: function (newVal, oldVal) {
console.log(newVal,oldVal)
//绘制图形
// this.drawBikeRoute(newVal)
},
deep: true
}
现在数据添加进plinedata中了,但是监听事件没有生效,我需要怎么操作才能监听到plinedata对象对应列表的变化呢,plinedata的键是动态的,我改如何修改代码呢