组合后 对象里面是key:value,value里面是数组的形式{key:[aa,bb], key:[cc,dd]}
var chinaGeoCoordMap = {
'无锡市': [121.4648, 31.2891],
'廊坊市': [119.5313, 29.8773],
"金华市": [118.8062, 31.9208],
第2个参数以数组的形式传递的
this.add(this.centerdata[i].city,[this.centerdata[i].x,this.centerdata[i].y])
data: {
centerdata:[
{"city": "无锡市","clusterID": 1, "x": 120.7485913653,"y": 31.809979797058332},
{"city": "廊坊市","clusterID": 2,"x": 130.7485913653,"y": 39.215436433250005},
{"city": "金华市","clusterID": 3,"x": 140.7485913653,"y": 29.190387826775}
]
},
created() {
for(var i=0;i<this.centerdata.length;i++){
this.add(this.centerdata[i].city,[this.centerdata[i].x,this.centerdata[i].y]);//传参是重点
}
},
methods: {
add(key,value){
let keyValue={}
keyValue[key]=value;
console.log(keyValue)
}
},
遇见问题,这是你成长的机会,如果你能够解决,这就是收获。
作者:晚来南风晚相识
本文版权归作者所有,欢迎转载,未经作者同意须保留此段声明,在文章页面明显位置给出原文连接
如果文中有什么错误,欢迎指出。以免更多的人被误导。