我是 RequireJS 的新手,我坚持加载顺序。
我有一个全局项目配置,需要在 js/app/* 中的模块之前加载它。
这是我的结构:
index.html
config.js
js/
require.js
app/
login.js
lib/
bootstrap-2.0.4.min.js
这是 config.js 文件:
var Project = {
'server': {
'host': '127.0.0.1',
'port': 8080
},
'history': 10, // Number of query kept in the local storage history
'lang': 'en', // For future use
};
这是我的requirejs文件(app.js):
requirejs.config({
//By default load any module IDs from js/lib
baseUrl: 'js/lib',
//except, if the module ID starts with "app",
//load it from the js/app directory. paths
//config is relative to the baseUrl, and
//never includes a ".js" extension since
//the paths config could be for a directory.
paths: {
bootstrap: '../lib/bootstrap-2.0.4.min',
app: '../app',
},
shim: {
'app': {
deps: ['../../config'],
exports: function (a) {
console.log ('loaded!');
console.log (a);
}
} // Skual Config
},
});
var modules = [];
modules.push('jquery');
modules.push('bootstrap');
modules.push('app/login');
// Start the main app logic.
requirejs(modules, function ($) {});
但有时,当我加载页面时,我有一个“项目”未定义,因为 login.js 已在 config.js 之前加载。
无论如何,我如何强制首先加载 config.js?
注意:我看到 order.js 是 RequireJS 的插件,但它显然从 v2 开始就不受支持,由shim
.