为什么我一直得到403禁止的问题?

时间:2014-01-08 04:18:49

标签: jquery ajax json

我一直得到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) 

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

也许此链接有助于403 forbidden error jquery EasyUI

答案 1 :(得分:1)

尝试将文件放在根文件夹中,然后访问它。它将帮助您排除在根文件夹下没有访问权限的问题。