RequireJS 2.0.1を少し試しています。私の目標は、jQuery、Underscore、および Backbone を正しくロードすることです。元のRequireJS docから、著者の 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);
}
);
jQuery と Underscore のAMDedバージョンがあることは知っていますが、セットアップが非常に単純な場合、なぜそれらを使用する必要があるのか わかりません。
それで、このセットアップは正しいですか、それとも何か不足していますか?