我想返回json數據,但我的代碼不工作。我沒有收到任何錯誤消息。我有index.php,ajax.php和db.php。 Db.php正在工作。但我的ajax代碼不起作用。我的錯誤在哪裏?使用php返回json數據
的index.php:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
</head>
<body>
<div id="test" style="width:500px;height:400px; margin:20px auto;"></div>
<script>
$(window).load(function() {
$.ajax({
dataType: "json",
url: 'ajax.php',
success:function(data){
$("#test").html(data);
}
});
});
</script>
</body>
</html>
Ajax.php:
<?php
require 'db.php';
$query="select lat,lng from locations order by id";
$result = pg_query($link, $query);
if (!$result) {
echo "An error occurred_xxx.\n";
}else {
$arr = pg_fetch_all($result);
echo json_encode($arr);
} ?>
請問您的開發者控制檯顯示的任何錯誤?你可以在網絡面板上顯示AJAX請求的輸出嗎? –
我現在導航到http://localhost/php/index.php。 –