代码之家  ›  专栏  ›  技术社区  ›  user656925

图形-实现有序的异步脚本加载?

  •  0
  • user656925  · 技术社区  · 12 年前

    为了提高性能,有很多异步加载JavaScript的方法,如下所示 SO post.

    然而,通常情况下,如果您需要排序,比如依赖关系,这些方法不会保留排序。

    您可以通过哪些方式获得异步加载的好处,同时在需要时保留排序。

    主干依赖关系就是一个很好的例子。

    (require.js,jquery.js)->主干.js

    有没有从库中获得的promise或队列的实现来实现这一点?

    它看起来不像 head.js 尚未使用承诺或队列。

    2 回复  |  直到 12 年前
        1
  •  1
  •   Vivin Paliath    12 年前

    简单的解决方案:使用 Promises . .ajax 在jQuery中提供了1.5版本的promise。

    如果你不能使用第三方库,你可以这样做:

    var resourceData = {};
    var resourcesLoaded = 0;
    
    function loadResource(resource, callback) {
        var xhr = new XMLHttpRequest();
        xhr.onload = function() {
            var state = this.readyState;
            var responseCode = request.status;
    
            if(state == this.DONE && responseCode == 200) {
                callback(resource, this.responseText);
            }
        };
    
        xhr.open("get", resource, true);
        xhr.send();
    }
    
    //Assuming that resources is an array of path names
    function loadResources(resources) {
        for(var i = 0; i < resources.length; i++) {
            loadResource(resources[i], function(resource, responseText) {
    
                //Store the data of the resource in to the resourceData map,
                //using the resource name as the key. Then increment the
                //resource counter.
                resourceData[resource] = responseText;
                resourcesLoaded++;
    
                //If the number of resources that we have loaded is equal
                //to the total number of resources, it means that we have
                //all our resources.
                if(resourcesLoaded === resources.length) {
                    //Manipulate the data in the order that you desire.
                    //Everything you need is inside resourceData, keyed
                    //by the resource url. 
                    ...
                    ...
                }                    
            });
        }
    }
    
        2
  •  1
  •   Ed DeGagne    12 年前

    尝试实现和使用Combres库。

    https://www.nuget.org/packages/combres

    装货订单只是众多好处之一。最小化、css变量、tilda在路径中的使用(如在asp.net中)等只是其中的一些好处,以及组合和缓存。