我的回复看起来像这样:
[{“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')