64

r.js を使用してコードを最適化しようとしていますが、このエラーが発生し続けます。

依存関係のトレース: init

Error: Load timeout for modules: backbone,jquerymobile

私が実行しているコマンドは次のとおりです。

$ java -classpath /Users/dixond/build-tools/rhino1_7R4/js.jar:/Users/dixond/build-tools/closurecompiler/compiler.jar org.mozilla.javascript.tools.shell.Main /Users/dixond/build-tools/r.js/dist/r.js -o /Users/dixond/Sites/omm_mobile/js/build.js

私の build.js ファイルは次のようになります。

( {
    //appDir: "some/path/",
    baseUrl : ".",
    mainConfigFile : 'init.js',
    paths : {
        jquery : 'libs/jquery-1.8.3.min',
        backbone : 'libs/backbone.0.9.9',
        underscore : 'libs/underscore-1.4.3',
        json2 : 'libs/json2',
        jquerymobile : 'libs/jquery.mobile-1.2.0.min'
    },
    packages : [],
    shim : {
        jquery : {
            exports : 'jQuery'
        },
        jquerymobile : {
            deps : ['jquery'],
            exports : 'jQuery.mobile'
        },
        underscore : {
            exports : '_'
        },
        backbone : {
            deps : ['jquerymobile', 'jquery', 'underscore'],
            exports : 'Backbone'
        }
    },
    keepBuildDir : true,
    locale : "en-us",
    optimize : "closure",
    skipDirOptimize : false,
    generateSourceMaps : false,
    normalizeDirDefines : "skip",
    uglify : {
        toplevel : true,
        ascii_only : true,
        beautify : true,
        max_line_length : 1000,
        defines : {
            DEBUG : ['name', 'false']
        },


        no_mangle : true
    },
    uglify2 : {},
    closure : {
        CompilerOptions : {},
        CompilationLevel : 'SIMPLE_OPTIMIZATIONS',
        loggingLevel : 'WARNING'
    },
    cssImportIgnore : null,
    inlineText : true,
    useStrict : false,
    pragmas : {
        fooExclude : true
    },
    pragmasOnSave : {
        //Just an example
        excludeCoffeeScript : true
    },
    has : {
        'function-bind' : true,
        'string-trim' : false
    },
    hasOnSave : {
        'function-bind' : true,
        'string-trim' : false
    },
    //namespace: 'foo',
    skipPragmas : false,
    skipModuleInsertion : false,
    optimizeAllPluginResources : false,
    findNestedDependencies : false,
    removeCombined : false,
    name : "init",
    out : "main-built.js",
    wrap : {
        start : "(function() {",
        end : "}());"
    },
    preserveLicenseComments : true,
    logLevel : 0,
    cjsTranslate : true,
    useSourceUrl : true
})

そして私のinit.jsは次のようになります:

 requirejs.config({
      //libraries
      paths: {
          jquery:       'libs/jquery-1.8.3.min',
          backbone:     'libs/backbone.0.9.9',
          underscore:   'libs/underscore-1.4.3',
          json2 :       'libs/json2',
          jquerymobile: 'libs/jquery.mobile-1.2.0.min'
      },

      //shimming enables loading non-AMD modules
      //define dependencies and an export object
      shim: {
          jquerymobile: {
              deps: ['jquery'],
              exports: 'jQuery.mobile'
          },
          underscore: {
              exports: '_'
          },
          backbone: {
              deps: ['jquerymobile', 'jquery', 'underscore', 'json2'],
              exports: 'Backbone'
          }
      }
    });


requirejs(["backbone",], function(Backbone) {
    //Execute code here
});

このビルドプロセスで何が間違っていますか?

4

7 に答える 7

113

Require.js には、waitSeconds という Config オプションがあります。これが役立つ場合があります。

RequireJS の waitSeconds

以下は、waitSeconds が使用されている例です。

requirejs.config({
    baseUrl: "scripts",
    enforceDefine: true,
    urlArgs: "bust=" + (new Date()).getTime(),
    waitSeconds: 200,
    paths: {
        "jquery": "libs/jquery-1.8.3",
        "underscore": "libs/underscore",
        "backbone": "libs/backbone"
    },
    shim: {
        "underscore": {
            deps: [],
            exports: "_"
        },
        "backbone": {
            deps: ["jquery", "underscore"],
            exports: "Backbone"
        },
    }
});

define(["jquery", "underscore", "backbone"],
    function ($, _, Backbone) {
        console.log("Test output");
        console.log("$: " + typeof $);
        console.log("_: " + typeof _);
        console.log("Backbone: " + typeof Backbone);
    }
);
于 2013-01-11T17:23:03.183 に答える
43

エラー

angularJS最近、を使用したプロジェクトで非常によく似た問題が発生しましたrequireJS

私は Chrome カナリア ビルド ( Version 34.0.1801.0 canary) を使用していますが、安定したバージョンもインストールされていました ( Version 32.0.1700.77)。開いた状態でアプリを読み込むと、まったく同じ問題が発生しDeveloper consoleます。

Uncaught Error: Load timeout for modules

コンソールが開いていないときにエラーが発生しなかったため、ここでは開発者コンソールが重要です。すべてのクロム設定をリセットし、プラグインをアンインストールしようとしました...これまでのところ何も役に立ちませんでした。

ソリューション

waitSeconds大きなヒントは、構成オプションに関する Google グループのディスカッション (以下のリソースを参照)でした。それを0に設定すると、問題が解決しました。これはタイムアウトを無限に設定するだけなので、これをチェックインしません。しかし、開発中の修正としては、これで問題ありません。構成例:

<script src="scripts/require.js"></script>
<script>
  require.config({
    baseUrl: "/another/path",
    paths: {
      "some": "some/v1.0"
    },
    waitSeconds: 0
  });
  require( ["some/module", "my/module", "a.js", "b.js"],
    function(someModule,    myModule) {
      //This function will be called when all the dependencies
      //listed above are loaded. Note that this function could
      //be called before the page is loaded.
      //This callback is optional.
    }
  );
</script>

このエラーの最も一般的なその他の原因は次のとおりです。

  • モジュールのエラー
  • 構成の間違ったパス (チェックpathsbaseUrlオプション)
  • 構成の二重入力

その他のリソース

requireJS のトラブルシューティング ページ: http://requirejs.org/docs/errors.html#timeoutポイント 2、3、および 4 が興味深い場合があります。

同様の SO の質問:リップル - キャッチされていないエラー: モジュールのロード タイムアウト: アプリ http://requirejs.org/docs/errors.html#timeout

関連する Google グループのディスカッション: https://groups.google.com/forum/#!topic/requirejs/70HQXxNylYg

于 2014-01-23T14:29:13.027 に答える
17

waitSeconds のデフォルト値 = 7 (7 秒)

0 に設定すると、タイムアウトは完全に無効になります。

ソース: http://requirejs.org/docs/api.html

于 2014-04-29T15:26:57.763 に答える
2

この問題の理由は、プロジェクトが大きなライブラリに依存している可能性があるため、Require.jsがタイムアウトになることです。デフォルトのタイムアウトは 7 秒です。もちろん、この構成オプション (waitSeconds と呼ばれる) の値を増やすと解決しますが、これは正しい方法ではありません。正しいアプローチは、ページの読み込み時間を改善することです。ページの読み込みを高速化するための最適な手法の 1 つは、縮小化 (コードを圧縮するプロセス) です。r.jswebpackなど、ミニフィケーションに適したツールがいくつかあります。

于 2016-02-11T21:11:31.320 に答える
0

Mobile Safari 6.0.0 (iOS 6.1.4) でテストを実行している場合にのみ、このエラーが発生します。waitSeconds: 0今のところ成功したビルドを提供してくれました。これでビルドが失敗した場合は更新します

于 2014-08-15T10:35:33.980 に答える