今天想直接js读取json文件会快点所以在网络上搜索如何读取本地的json文件结果找到了下边的这样

    var Ajax = function ()  
    {  
        $.getJSON ("js/userinfo.txt", function (data)  
        {  
            $.each (data, function (i, item)  
            {  
                $ ("#disp").append ("<h3>" + item.name + "</h3>");  
                $ ("#disp").append ("<p>" + item.sex + "</p>");  
                $ ("#disp").append ("<p>" + item.email + "</p>");  
            });  
        });  
    }  

测试后发现读取本地的文件竟然用了小一秒,我直接查询的数据库才190多毫秒,网络上都说读取json文件应该比直接读数据库要快的,后来才发现其实我是用错了方法

var strPath = window.document.location.pathname;   
var postPath = strPath.substring(0, strPath.substr(1).indexOf('/') + 1);  
var url="http://"+window.location.host+postPath+"/";  
  
var stat_time;  
$.ajax({  
    url : url+"stat_time.json",  
    datatype: "json",        
    async : false,  
    data :{},  
    success : function(result) {  
        stat_time=result;  
    }  
 });  
console.log(JSON.stringify(stat_time));
如果是这么搞的话其实只用10来毫秒就可以读取到了


GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 3 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐