jquery ajax json错误'临时标题显示'

时间:2017-04-11 09:21:48

标签: jquery json ajax

我无法使用jquery api示例以简单的方式获取我的json数据,因此我在请求之前和之后只有2个控制台日志。我使用本地主机denwer和xampp进行测试。关闭我的所有扩展程序,因为我知道这是adblock阻止我的请求... 附:抱歉英文不好



{
	"articles": [
			{
				"id": 1,
				"name": "How to build a website"
			},
			{
				"id": 2,
				"name": "Reading json with jquery"
			},
			{
				"id": 3,
				"name": "Learning javascript"
			},

	]
}

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>JSON</title>
	<script src="js/jquery-3.2.1.js"></script>
	<script>
		console.log('before request');
		$.getJSON( "ajax/articles.json", function( data ) {
			console.log('success');
			console.log(data.articles);
		});
		console.log('after request');
	</script>
</head>
<body>
	
</body>
</html>
&#13;
&#13;
&#13;

enter image description here

0 个答案:

没有答案