Интерактивность с сервером и клиентом в JSON

0
   <!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <script type="text/javascript" src="./js/jquery.js"></script>


</head>
<body>
    <div class="vpic"><img src="" width="800" /></div>
    <div>
        <div style="float:left; margin-right:10px; cursor:pointer" class="cpic"><img src="" width="200" /></div>
        <div style="float:left; margin-right:10px; cursor:pointer" class="cpic"><img src="" width="200" /></div>
        <div style="float:left; margin-right:10px; cursor:pointer" class="cpic"><img src="" width="200" /></div>
    </div>

    <script type="text/javascript">
        $(document).ready(function(){
         console.log("connected");
         $.post("get.php",{},function(shilpa,status){

                 alert("status"+status);
                },"json");

        });



    </script>

</body>
</html>

//get.php

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="./js/jquery.js"></script>
var user= <?php echo json_encode(array("data"=>array(
    "father" => array(1,2,3),
    "mother" => array(1,2,3),
    "kid" => array(1,2,3)
))); ?>
</script>
<title>try</title>
</head>

Я новичок в json. Я хочу распечатать данные json, которые поступают из get.php, но ничего не возвращается, когда я пишу этот код.

  • 0
    Вы печатаете get.php файла get.php ?
  • 0
    Можете ли вы показать нам свой исходный код get.php echo json_encode($data); или что-то ?
Теги:

1 ответ

0

get.php должен просто печатать данные JSON:

<?php
    header('Content-type: application/json');
    echo json_encode(array("data" => array(
        "father" => array(1,2,3),
        "mother" => array(1,2,3),
        "kid" => array(1,2,3)
    )));
?>

Ещё вопросы

Сообщество Overcoder
Наверх
Меню