迭代通过JSON数组无法按预期工作

时间:2012-12-14 15:08:07

标签: php jquery json

我正在尝试迭代通过JQuery中的php脚本发送的JSON数组的结果。目前我想要做的就是打印数组的长度,但仅此一点不起作用,所以我想我在这里遗漏了一些东西。

我目前的html / JQuery是:

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.5.js"></script>
<script>
$(document).ready(function(){
 $("button").click(function(){
  $.getJSON("./getFile.php?fileName=ni", function(json){
     alert("test");
     alert(json.length);
  });
 });
});
</script>
</head>
<body>

<div id="div1"><h2>Test script</h2></div>
<button>Get External Content</button>

</body>
</html>

遇到的JSON字符串是:

[{"where":"up\n","time":"15:37:33"},{"where":"up\n","time":"15:39:34"},{"where":"up\n","time":"15:41:36"},{"where":"down\n","time":"15:43:37"}]

这是通过在php中的多维数组上运行json_encode生成的。

更新:

我期待这两个警报被解雇,但事实并非如此。测试或阵列的长度都没有出现......

我的PHP代码如下:

<?php

$myFile = $_GET['filename'];

$file = fopen($myFile, "r");
$$response = "[ ";

$data = array();
$json = array();
while (!feof($file))
{
   $row = array();
   $currentLine = fgets($file);
   $parts = explode(" ", $currentLine);
   $length = sizeof($parts);
      $time = $parts[0];
      $where = $parts[$length-1];
   $json['where'] = $where;
   $json['time'] = $time;   
   $data[] = $json;
}

echo json_encode($data);
?>

2 个答案:

答案 0 :(得分:0)

使用jQuery.each()迭代项目。

$.each(items, function(index, value) {
    console.log(index +": " + value.where);
});

答案 1 :(得分:0)

你的json不是阵列!所以它没有长度属性。你必须改变你的数据...这应该有效。

$(document).ready(function(){
    $("button").click(function(e){

        // prevent default behaviour if needed
        e.preventDefault();

        $.getJSON("./getFile.php?fileName=ni", function(json){

            var arr = [];
            jQuery(json).each(function(index){            
                count = arr.push(this)
            });

            alert("test");
            alert(count);
        });

    });
});

@see http://jsfiddle.net/SA5G8/