0

我的回复看起来像这样:

[{“0”:“k@k.com”},{“1”:“p@p.com”},{“2”:“n@n.com”},{“3”:“b @b.com},{“4”:“k1@k1.com”},{“5”:“z@z.com”},{“6”:“k2@k2.com”}]

我正在尝试通过以下 html 阅读此内容:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">

    $(document).ready(function(){


        document.write('Getting JSON response...');
        $.getJSON(<my django url>,
            function(data) {
            alert("receiveng"+data["0"]);
            });
    });

</script>

</head>


<body>
</body>
</html>

但是我没有收到任何带有数据的警报框,只是在屏幕上打印了 Getting JSON response..... 行。

这是我的退货声明:

return HttpResponse( simplejson.dumps(result) , content_type='application/json')
4

2 回答 2

0

问题出在您的 JSON 格式中,无法解析/评估。例如,任何 JSON 对象都如下所示:

[
    {"attributeName1":"value1", "attributeName2":"value2"},
    {"attributeName1":"value3", "attributeName2":"value4"}
]

但在您的 JSON 示例中,您attributeName1拥有0. 如果我们给变量命名为 ,也是一样的0。喜欢define 0 = k@k.com。是不可能的。尝试将其更改为类似id0.

于 2013-05-27T11:25:16.090 回答
0

谢谢你们的帮助。

数据 [0][0] 表示法有效。

在运行循环直到 data[i][j] 值变成未定义时,我使用了:

数据[i][i.toString()]; 它工作得很好。

于 2013-05-28T10:27:37.007 回答