我正在对 RequireJS 2.0.1进行一些试验。我的目标是正确加载 jQuery、Underscore 和 Backbone。从最初的RequireJS 文档中,我发现作者 J. Burke(在这个新版本中)添加了一个名为 shim 的新配置选项。
然后我把这些东西写在这里:
index.html
<!DOCTYPE html>
<html>
<head>
<title>Testing time</title>
<script data-main="scripts/main" src="scripts/require.js"></script>
</head>
<body>
<h1>Testing time</h1>
</body>
</html>
scripts/main.js
requirejs.config({
shim: {
'libs/jquery': {
exports: '$'
},
'libs/underscore': {
exports: '_'
},
'libs/backbone': {
deps: ['libs/underscore', 'libs/jquery'],
exports: 'Backbone'
}
}
});
define(
['libs/jquery', 'libs/underscore', 'libs/backbone'],
function (jQueryLocal, underscoreLocal, backboneLocal) {
console.log('local', jQueryLocal);
console.log('local', underscoreLocal);
console.log('local', backboneLocal);
console.log('global', $);
console.log('global', _);
console.log('global', Backbone);
}
);
一切似乎都很好,但我觉得我错过了一些东西,我知道有AMD 版本的 jQuery 和Underscore但如果设置如此简单,我不明白为什么我应该使用它们。
那么,这个设置是正确的还是我错过了什么?