有没有可能我可以将json字符串从php推送到直接浏览器的localStorage? 我现在能做的是:
Marker marker = mMap.addMarker(new MarkerOptions()
.position(new LatLng(latitude+.005, longitude))
.anchor(0.5f,0.5f)
);
但我不想在浏览器页面源中看到来自$ someJsonData的数据。 或者我可以在浏览器完成加载$ someJsonData之后发送一个ajax请求,这很简单,但这不是我现在想的。
我知道,这似乎不可能。我只是好奇,如果有,我可能不知道的事情。