3

我正在为我的移动应用程序项目使用 jquery、backbonejs、underscorejs 和 bootstrap 3。我在涟漪中运行我的应用程序。有时我在控制台中遇到这个愚蠢的错误。

Uncaught Error: Load timeout for modules: app
http://requirejs.org/docs/errors.html#timeout 

为什么会这样?

提前非常感谢。

4

1 回答 1

7

我已将 require js 配置选项 waitSeconds 设置为 0 并且错误消失了。

我的配置:

require.config({

  baseUrl: 'app/lib',

  paths: {
    app: '../js',
    tpl: '../tpl'
  },
  urlArgs: "bust=" +  (new Date()).getTime(),
  waitSeconds: 0,
  shim: {
    'zepto': {
        exports: '$'
    },

    'backbone': {
        //These script dependencies should be loaded before loading
        //backbone.js
        deps: ['zepto', 'underscore'],
        //Once loaded, use the global 'Backbone' as the
        //module value.
        exports: 'Backbone'
    },
    'underscore': {
        exports: '_'
    }
  }  

});

希望这有帮助

于 2014-01-02T07:51:58.373 回答