外部json文件未从桌面加载

时间:2016-01-06 09:26:44

标签: json

我无法在<script>中加载外部json文件。

     <script>
         function get_data()
        { 
         $.ajax(
          {
       type: "GET", 
       url:"json.json", 
         dataType:"json", 
         async: true,       
         success:function(mainObject)
        { 
            if (mainObject.text) 
                { var JSONa = JSON.parse(mainObject.text); } 
            else
                { var JSONa = mainObject; }
        }
      }
    );
     }
    get_data();
   </script>

这是json文件在桌面上,html文件也在桌面上。文件名是corect,我也尝试过将url作为url:&#34; C:\ Users \ jathaker \ Desktop \ json.json&#34;。

0 个答案:

没有答案