我使用 google api 生成地点和地图。我在 php 中有 json 解析代码,我需要在 javascript 中使用它,有人可以帮我处理我的代码吗
<?php
$json_string = file_get_contents("https://maps.googleapis.com/maps/api/place/textsearch/json?query=pizza&sensor=false&key=MYKEY");
$parsed_json = json_decode($json_string);
$var = $parsed_json->{'results'}[0]->{'formatted_address'};
?>
所以 [0] 我指的是第一个结果,如何在 javascript 中做到这一点?