localStorage를 사용하는 것이 빠릅니다! 내 시험은 보여
- CDN에서 jQuery로드 : Chrome 268ms , FireFox : 200ms
- localStorage에서 jQuery로드 : Chrome 47ms , FireFox 14ms
HTTP 요청을 저장하면 이미 큰 속도 이점이 있습니다. 여기에있는 모든 사람들이 그 반대에 대해 유죄 판결을받은 것 같습니다.
내 결과를 테스트하려면 localStorage에 스크립트를 캐시하는 작은 라이브러리를 작성했습니다. Github https://github.com/webpgr/cached-webpgr.js 에서 확인 하거나 아래 예에서 복사하십시오.
완전한 라이브러리 :
function _cacheScript(c,d,e){var a=new XMLHttpRequest;a.onreadystatechange=function(){4==a.readyState&&(200==a.status?localStorage.setItem(c,JSON.stringify({content:a.responseText,version:d})):console.warn("error loading "+e))};a.open("GET",e,!0);a.send()}function _loadScript(c,d,e,a){var b=document.createElement("script");b.readyState?b.onreadystatechange=function(){if("loaded"==b.readyState||"complete"==b.readyState)b.onreadystatechange=null,_cacheScript(d,e,c),a&&a()}:b.onload=function(){_cacheScript(d,e,c);a&&a()};b.setAttribute("src",c);document.getElementsByTagName("head")[0].appendChild(b)}function _injectScript(c,d,e,a){var b=document.createElement("script");b.type="text/javascript";c=JSON.parse(c);var f=document.createTextNode(c.content);b.appendChild(f);document.getElementsByTagName("head")[0].appendChild(b);c.version!=e&&localStorage.removeItem(d);a&&a()}function requireScript(c,d,e,a){var b=localStorage.getItem(c);null==b?_loadScript(e,c,d,a):_injectScript(b,c,d,a)};
라이브러리 호출
requireScript('jquery', '1.11.2', 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', function(){
requireScript('examplejs', '0.0.3', 'example.js');
});