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 的配置选项。这可能会有所帮助。

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 canary build ( Version 34.0.1801.0 canary),但也安装了稳定版本 ( Version 32.0.1700.77),在打开加载应用程序时显示完全相同的问题Developer console

Uncaught Error: Load timeout for modules

开发人员控制台在这里很关键,因为在控制台未打开时我没有收到错误消息。我尝试重置所有 chrome 设置,卸载任何插件,......到目前为止没有任何帮助。

解决方案

大指针是关于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 point 2、3 和 4 可能很有趣。

类似的 SO 问题:Ripple - Uncaught Error: Load timeout for modules: app http://requirejs.org/docs/errors.html#timeout

相关的 Google 群组讨论:https ://groups.google.com/forum/#!topic/requirejs/70HQXxNylYg

于 2014-01-23T14:29:13.027 回答
18

如果其他人有这个问题并且仍然在努力解决它(就像我一样),这个问题也可能来自循环依赖,例如 A 依赖于 B,B 依赖于 A。

RequireJS 文档没有提到循环依赖会导致“加载超时”错误,但我现在已经观察到两种不同的循环依赖。

于 2014-07-15T17:35:21.113 回答
17

waitSeconds 的默认值 = 7(7 秒)

如果设置为 0,则完全禁用超时。

来源:http ://requirejs.org/docs/api.html

于 2014-04-29T15:26:57.763 回答
2

问题的原因是Require.js运行超时,因为项目可能依赖于大型库。默认超时为 7 秒。增加此配置选项的值(称为 waitSeconds)当然可以解决它,但这不是正确的方法。正确的做法是提高页面加载时间。加速页面加载的最佳技术之一是缩小- 压缩代码的过程。有一些很好的缩小工具,例如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 回答
0

TLDR:使用两个有效的不同名称两次要求同一个文件,可能是以下两个:

  • 绝对路径:'/path/to/file.js'

  • 相对路径:'./path/to/file.js'

  • 作为一个模块:'路径/到/文件'

  • 作为主路径配置的模块:

    路径:{'我的/模块/文件':'/path/to/file'}

最近有同样的问题。我确实批量更改了一些需要路径,所以我知道问题是关于那个的。

我可以在服务器端日志和网络调试选项卡上清楚地看到文件在不到一秒的时间内提供服务。这不是一个真正的超时问题。

我尝试按照建议使用xrayrequire来查找任何循环依赖,但没有成功。我查找了冲突文件的要求,发现我要求它两次使用不同的名称。

于 2021-05-25T08:28:28.233 回答