5

DOM に既に存在する可能性のあるモジュールのロードを回避する方法はありますか?

例:

require.config({
  paths: {
    // jquery here is needed only if window.jQuery is undefined
    'jquery': '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min'
  }
});

このスニペットのようなものを使用できることは素晴らしいことです

require.config({
  paths: {
    'jquery': {
       uri: '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min',
       // if this function returns false or undefined load the script from the url
       define: function(){ return window.jQuery; } 
    }
  }
});

-------------------------------------------------- ---------------

アップデート

-------------------------------------------------- ---------------

プルリクエストを github https://github.com/jrburke/requirejs/issues/886の@jrburke に送信し、私の提案を添えました。修正されたバージョンの requirejs は、次の場所でテストできます。

http://gianlucaguarini.com/experiments/requirejs/requirejs-test3.html

ここで私のAPI提案によるrequirejs構成

require.config({
  paths: {
    // jquery here is needed only if window.jQuery is undefined
    'jquery':'//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min',
    'lodash':'//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.0.0/lodash.underscore.min',
    'backbone':'//cdnjs.cloudflare.com/ajax/libs/backbone.js/1.0.0/backbone-min'
  },
  shim:{
    'jquery':{
      // with my fix now I detect whether window.jQuery has been already defined
      // in this case I avoid to load the script from the cdn
      exports:'jQuery',
      // if this feature is missing I need to load the new jQuery from the cdn
      validate: function(){
        return  window.jQuery.Defferred;
      }
    },
    'lodash':{
      // lodash will be loaded only if it does not exist in the DOM
      exports:'_',
      // if this function returns false or undefined load the script from the cdn
      validate: function() {
        // is the lodash version already available in the DOM new enough for my application?
        return  window.parseInt(window._.VERSION) >= 2;
      }
    },
    'backbone':{
      deps:['lodash','jquery'],
      // if backbone exists we don't need to load it twice
      exports:'Backbone'
    }
  }
});
4

2 に答える 2

0

jQuery は AMD と互換性があるため、既にページにある場合、Require.js はそれを再びロードしません。

より広い意味で、Require.js は、モジュールがまだ定義されていない場合にのみパス構成を検索します。したがって、モジュールを定義するとすぐに、Require.js はそれを再びロードしません。

define('jquery', [], function() { /* stuff */ });
//        ^ Module 'jquery' is defined here. Require.js won't load it twice.

実際の例については、この JsBin をチェックしてください: http://jsbin.com/OfIBAxA/2/edit

于 2013-09-20T17:35:32.337 に答える