我一直得到403禁止错误,我根本无法得到我的json数据......这是我的html源代码:
<html>
<head>
<meta name="keywords" content="jquery,ui,easy,easyui,web">
<meta name="description" content="easyui help you build your web page easily!">
<title>jQuery EasyUI Demo</title>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
</head>
<body>
<h1>TreeGrid</h1>
<script>
(function(){
$.getJSON("data/data.json", function(data){
console.log(data); // i am not getting data here
});
})();
</script>
</body>
</html>
网址的路径是正确的。我收到的错误是:
GET http://localhost/~xxxxxx/dataTest/data/data.json 403 (Forbidden)
我该如何解决这个问题?
答案 0 :(得分:1)
答案 1 :(得分:1)
尝试将文件放在根文件夹中,然后访问它。它将帮助您排除在根文件夹下没有访问权限的问题。