我已经粘贴了index.php和jsonPhp.php的代码。我是JSON的新手,用ajax学习json。这里我试图用json从服务器获取数据。当我点击链接SERVER时DATA,来自服务器的数据必须出现而不使用jQuery / json重新加载页面。我已经编写了代码,但我没有得到它的工作。请帮助。 感谢。
<head>
<title>JSON WITH PHP</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js"
type="text/javascript"></script>
<script type="text/javascript">
< ![CDATA[
$(function () {
$('#click').click(function () {
$.post('jsonPhp.php', function (data) {
//$("#content").html(data)+'<br>';
var pushedData = jQuery.parseJSON(data);
var htmlData = "";
//loop through using jQuery
$.each(pushedData, function (i, field) {
htmlData = htmlData + '-' + field.id + ',' + field.place + ',' + field.description + '<br>';
});
$('#content').html(htmlData);
});
});
});]] >
</script>
</head>
<body>Click on the link below to get the data from the Server Dynamicallly!
<br
/>
<a href="#" id="click">Server Data</a>
<div id="content"></div>
</body>
<?php
$db = mysql_connect("localhost","root","")or die(mysql_error());
mysql_select_db("places",$db) or die(mysql_error());
if(isset($_POST['place']))
$place=$_POST['place'];
if(isset($_POST['description']))
$description=$_POST['description'];
$myrows = array();
$result = mysql_query("SELECT * FROM search");
while( $row = mysql_fetch_assoc($result) ) {
$myrows[] = $row;
}
echo json_encode($myrows);
?>
答案 0 :(得分:0)
您的jQuery帖子没有发布必要的项目。
小心使用此代码。
答案 1 :(得分:0)
尝试指定使用POST请求发送的参数,结果如下:
$.post('jsonPhp.php', { place:'myplace', /* other params */ }, function (data) { ...