gpt4 book ai didi

php - 简单的JSON解析

转载 作者:行者123 更新时间:2023-11-29 20:11:26 24 4
gpt4 key购买 nike

我有两个页面,test.php 编码一个 JSON 数组,test.html 我使用 $.getJSON 从 PHP 页面解析数组。两个页面都在同一个目录中。

测试.php:

<?php
for ($x=0; $x<10; $x++){
$arr[$x] = array('Value1'=>"$x", 'Value2'=>"$x");
}
$y = json_encode($arr);
echo $y;
?>

测试.html:

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>

</head>

<body>
<ul>
<script type="text/javascript">
$(document).ready(function(){
$.getJSON('test.php', function(data) {
var items = [];

$.each(data, function(key, val) {
items.push('<li id="' + key + '">' + val + '</li>');
});

$('<ul/>', {
'class': 'my-new-list',
html: items.join('')
}).appendTo('body');
});
});

</script>
</body>
</html>

test.html 未成功解析来自 test.php 的任何 JSON 数据。谁能告诉我这是为什么?谢谢!!

最佳答案

看起来您只是在 JSON 字符串中迭代外部数组,而不是在每个对象文字上迭代。你的 JSON 看起来像这样:

[{"Value1":"0","Value2":"0"},{"Value1":"1","Value2":"1"},{"Value1":"2","Value2":"2"},{"Value1":"3","Value2":"3"},{"Value1":"4","Value2":"4"},{"Value1":"5","Value2":"5"},{"Value1":"6","Value2":"6"},{"Value1":"7","Value2":"7"},{"Value1":"8","Value2":"8"},{"Value1":"9","Value2":"9"}]

那是一个数组,包含一堆对象字面量。要获取这些对象,您需要以下内容:

$.getJSON('test.php', function(data) {
var items = [];

// Iterate first over the outer array
$.each(data, function(key, val) {

// Then over the properties of each object contained in the array
$.each(val, function(innerkey, innerval) {
items.push('<li id="' + innerkey + '">' + innerval + '</li>');
});
});

$('<ul/>', {
'class': 'my-new-list',
html: items.join('')
}).appendTo('body');
});

更新:

Here are the guts of this在 jsFiddle 上演示。

关于php - 简单的JSON解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9542889/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com