0

我正在尝试遍历通过 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);
?>
4

2 回答 2

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);
        });

    });
});

@见http://jsfiddle.net/SA5G8/ ​< /p>

于 2012-12-14T15:30:59.357 回答
0

您使用jQuery.each()遍历项目。

$.each(items, function(index, value) {
    console.log(index +": " + value.where);
});
于 2012-12-14T15:09:41.337 回答