你好,我试图从价格内的每个对象/项目的每个“item_name”和“average_price”中追溯http://www.numbeo.com//api/city_prices?api_key=lnu_se_713&query=vaxjo ... 我无法从json中取回任何东西,我相信我的电话或工作中缺少某些东西
var url = "http://www.numbeo.com//api/city_prices?api_key=lnu_se_713&query=vaxjo";
var src;
$.getJSON(url+ "&format=json&jsoncallback=?" , function (data) {
$.each(data[].prices.average_price, function (i, item) {
alert(object.prices.average_price);
});
});
从表面上看,我只想预设网络中的3个项目 (“餐厅便宜的餐厅”,“麦当劳的组合餐”,“国内啤酒”)作为桌面负责人,并以谷物价格附加价格。
请帮帮我
答案 0 :(得分:-1)
$json_string ="https://www.numbeo.com/api/city_prices?api_key=enter key=entes city";
$jsondata = file_get_contents($json_string);
$obj = json_decode($jsondata,true);
foreach($obj['prices'] as $results)
{
echo '<tr>
<td>'.$results['item_name'].'</td>
<td>'.$results['lowest_price'].'</td>
<td>'.$results['highest_price'].'</td>
<td>'.$results['average_price'].'</td>
';
}