当我使用 PHP 将 JSON Array 回显到 android 时,我遇到了最后一个逗号的问题
这是我的代码
If ($commentResult>0)
echo "[";
{
while ($row = mysql_fetch_array($commentResult)) {
echo json_encode($row).",";
}
echo "]";
Android 无法读取,它打印出 JSONException:Vale at 3 is null