我看了http://www.w3schools.com/json/json_example.asp的例子。如何從運行PHP和MySQL的Web服務器讀取JSON數據?
我試着用我的mysql數據庫和我的PHP代碼。但它不起作用。 我是一個初學者,我不知道它是什麼問題。請幫助我,謝謝。 這是我的PHP鏈接: http://xebus2014.tk/demo.php
我改變w3school這樣的代碼:
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
border-bottom: 3px solid #cc9900;
color: #996600;
font-size: 30px;
}
table, th , td {
border: 1px solid grey;
border-collapse: collapse;
padding: 5px;
}
table tr:nth-child(odd) \t {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
</style>
</head>
<body>
<h1>Customers</h1>
<div id="id01"></div>
<script>
var xmlhttp = new XMLHttpRequest();
var url = "http://xebus2014.tk/demo.php";
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
myFunction(xmlhttp.responseText);
}
}
xmlhttp.open("GET", url, true);
xmlhttp.send();
function myFunction(response) {
var arr = JSON.parse(response);
var i;
var out = "<table>";
for(i = 0; i < arr.length; i++) {
out += "<tr><td>" +
arr[i].STT +
"</td><td>" +
arr[i].ID +
"</td><td>" +
arr[i].Name +
"</td><td>" +
arr[i].Singer +
"</td></tr>";
}
out += "</table>"
document.getElementById("id01").innerHTML = out;
}
</script>
</body>
</html>
也發表您的PHP代碼。不要將php放在代碼片段中(因爲它不起作用) – SuperDJ
什麼是您的錯誤消息 – Gayathri
您不需要解析響應,因爲它已經是JSON。這可能是錯誤。 –