gpt4 book ai didi

javascript - "SyntaxError: JSON.parse: unexpected non-whitespace character after JSON data at line 1 column 295 of the JSON data"

转载 作者:行者123 更新时间:2023-12-03 03:30:50 26 4
gpt4 key购买 nike

我正在列出健身房的 list ,其中包括名称、图像、团队、地点、cp、所有者、id、纬度、经度。

现在我知道它可以获取每个查询等。但它现在提供了许多相同的 id、图像、团队等。但它需要显示所有 mon_cp mon_owner、mon_id 因为这些 mon_* 每次都不同。

它还向我显示错误:“SyntaxError: JSON.parse: JSON 数据第 1 行第 295 列的 JSON 数据后出现意外的非空白字符”

    $sql = "SELECT 
f.id, f.lat, f.lon, f.name, f.url, d.fort_id, d.pokemon_id, d.owner_name, d.cp, s.fort_id, s.team, s.slots_available
FROM forts AS f
LEFT JOIN gym_defenders AS d ON f.id=d.fort_id
LEFT JOIN fort_sightings AS s ON f.id=s.fort_id ORDER BY last_modified DESC";
$result = $mysqli->query($sql);

while($row = $result->fetch_assoc()) {

$url = preg_replace("/^http:/i", "https:", $row['url']);

if($row['team'] == 1){ $team = "mystic";}
if($row['team'] == 2){ $team = "valor";}
if($row['team'] == 3){ $team = "instinct";}

$encode = array("id" => $row['id'],
"name" => $row['name'],
"image" => $url,
"team" => $team,
"spots" => $row['slots_available'],
"mon_cp" => $row['cp'],
"mon_owner" => $row['owner_name'],
"mon_id" => $row['pokemon_id'],
"lat" => $row['lat'],
"lng" => $row['lon']);

echo json_encode($encode, JSON_FORCE_OBJECT);
}

它需要输出以下内容:

姓名:健身房名称

图片:https://images.com/image.png

团队:勇气

mon_cp: 1234, 233

mon_owner:monowner2000,monowner232

mon_id: 150, 155

纬度:34.67854

长度:5.054567

最佳答案

您在结果集的每次迭代中都echo-ing 一个完整的JSON 对象。这将使响应无效。

简单地移动

echo json_encode($encode); // note, do NOT use JSON_FORCE_OBJECT

while循环之外并将$encode赋值更改为push...

$encode[] = ['id' => ...

这将导致数组响应。

关于javascript - "SyntaxError: JSON.parse: unexpected non-whitespace character after JSON data at line 1 column 295 of the JSON data",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46107433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com