这是我拥有的 JSONArray:
[{"items_id":"13","total":"1"}, {"items_id":"216","total":"0"},{"items_id":"16","total":"1"}]
有时,每个对象都有两个以上的属性(属性?)。但我只是在这里展示原理。在 Java 中,我只需要抓取“总数”。我不需要“items_id”。
我认为它会显示出来,因为这是我在 PHP 中的 MySQL 查询:
$count_query_result=mysql_query("
SELECT items.items_id,
COUNT(ratings.item_id) AS total
FROM `items`
LEFT JOIN ratings ON (ratings.item_id = items.items_id)
WHERE items.cat_id = '{$cat_id}' AND items.spam < 5
GROUP BY items_id ORDER BY TRIM(LEADING 'The ' FROM items.item) ASC;");
这是我的 JSON 输出(我只显示了上面三个查询之一):
print(json_encode(array($output,$output2,$output3)));
我只想要用 JSON 编码的三个属性(三个输出变量中的每一个)。我想要属性“total”、“rate”和“item”。
所以我的问题是,我可以摆脱不需要的 items_id 属性吗?或者我什至需要?(我知道我需要在 SQL 中使用它来使查询工作——但我怎样才能在 JSONArray 中删除它?)
我在想,如果我有一个包含数百或数千个项目的列表,我可以通过仅输出我需要的 JSON 属性来节省一半的空间(和时间?)——这种想法正确吗?
编辑:根据要求提供更多代码:
while($row=mysql_fetch_assoc($count_query_result))
$output[]=$row;
while($row=mysql_fetch_assoc($average_query_result))
$output2[]=$row;
while($row=mysql_fetch_assoc($items_query_result))
$output3[]=$row;
print(json_encode(array($output,$output2,$output3)));
mysql_close();