我需要能够为我正在制作的应用程序从网站检索和显示 JSON 数据。在将它实施到我的应用程序中之前,我认为我应该通过在其他地方测试它来确保我了解它是如何工作的。我制作了以下 HTML 和 JSON 代码来测试它,但是如果我运行应用程序,我会得到 Uncaught TypeError: Cannot read property '0' of undefined at file:///android_asset/www/projectName.html:11 我在做什么错误的?
HTML:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$.get('testData.json', function(data) {
alert('get performed');
var obj = eval ("(" + data + ")");
$("p").html(obj.data_set[0].data1);
});
});
});
</script>
</head>
<body>
<h2>Heading</h2>
<p>Display</p>
<button>Click me</button>
</body>
</html>
JSON文件:
[{"data_set":{"data1":"string","data2":null,"data3":22.0}}]