0

我已经粘贴了 index.php 和 jsonPhp.php 的代码。我是 JSON 新手并使用 ajax 学习 json。在这里,我正在尝试使用 json 从服务器获取数据。当我单击链接服务器数据时,来自服务器的数据必须在不使用 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);

?>
4

2 回答 2

0

您的 jQuery 帖子没有发布必要的项目。

请小心使用此代码。

于 2012-07-30T22:28:19.853 回答
0

尝试指定使用 POST 请求发送的参数,结果如下:

$.post('jsonPhp.php', { place:'myplace', /* other params */ }, function (data) { ...
于 2012-07-30T22:28:21.543 回答