我正在创建一个 JSONArray 并将其解析为字符串,但由于它甚至包含字符串而不是代码,因此它不会按我的需要输出。
for(Place place: places){
locations.put("new google.maps.LatLng("+place.getContactData().getLatitude()+","+place.getContactData().getLongitude()+")");
}
return locations.toString();
它输出为:["new google.maps.LatLng(53.5608,9.96357)","new google.maps.LatLng(53.5608,9.96357)"]
但我需要它不带引号,[new google.maps.LatLng(53.5608,9.96357),new google.maps.LatLng(53.5608,9.96357)]
以便被javascript正确解释。