微信小程序如何修改对象数组中对象的某个属性值

以微信小程序中使用圆形覆盖物为例

data中的circles属性值

circles:[

      {

        latitude: '0',

        longitude: '0',

        color: '#8A4DB3',

        fillColor: '#7cb5ec88',

        radius: 600,//单位为m

        strokeWidth: 2

      }

    ],

这时候我们可能不希望这个覆盖物跑到(0,0)点去的,那怎么办呢如下

 let temp_lat = 'circles[0].latitude';

 let temp_lon = 'circles[0].longitude';

circles表示对象数组,其中的0表示是第几个对象的下标,这个0可以用其他变量表示当然也需求用字符串拼接,不然会不认识 。latitude自然就是我们想要修改的值。然后

this.setData({         

          [temp_lat]: res.latitude,

          [temp_lon]: res.longitude,

})

这样就成了!

 

 

你可能感兴趣的:(学习vue,微信小程序,小程序)