我正在使用 datefrom 和 dateto 制作一个下拉菜单,然后显示这些日期之间的日期,但它没有显示,并且我不断在控制台中收到此错误消息。
VM652:1
Uncaught SyntaxError: Unexpected token '<', "
"... is not valid JSON
at JSON.parse ()
at Object.success (:18:30)
at c (jquery-3.6.0.min.js:2:28327)
at Object.fireWith [as resolveWith] (jquery-3.6.0.min.js:2:29072)
at l (jquery-3.6.0.min.js:2:79901)
at XMLHttpRequest. (jquery-3.6.0.min.js:2:82355)
这是脚本:
这是 php 文件:
$date
$sales
";
}
// Close the connection
mysqli_close($conn);
?>
我想显示日期在所选日期之间的行,但控制台日志中不断显示错误,并且表格未显示
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
该错误与您的ajax方法的响应错误有关。该代码发送了
ajax请求的结果。您应该在 php 文件中使用echo json_encode($data);。$data = []; while ($row = mysqli_fetch_assoc($result)) { $data[] = $row; echo json_encode($data); }