我正在尝试打印简单的 JSON 数据以了解和了解 JSON。我无法弄清楚我在这里做错了什么。
我在这里关注本教程 http://www.youtube.com/watch?v=rncW-74VL7U
这是我的 JavaScript:
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script>
$.getJSON("json.php", function(data)
{
//json.php get the JSON data from here
//function(data) callback function
var itemslist = data.items[0];
document.write(itemslist.key);
});
</script>
这是PHP
<?php
// Set up the PHP to return the data in JSON format
header("content-type: application/json; charset=UTF-8" );
// This is a array of objects [key:"value", key2 : {k:"val", k2:"val2"}]
$myobj = '{items : [key:"value", key2 : {k:"val", k2:"val2"}]}';
$count = 2;
// Encode the above variables in JSON
echo json_encode(array("items" => $myobj, "count" => $count));
非常感谢您的帮助...