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