RequireJSでBackboneとUnderscore(およびjQuery)をロードしようとしています。 BackboneとUnderscoreの最新バージョンでは、ややこしいようです。たとえば、Underscoreは自動的にモジュールとして登録されますが、BackboneはUnderscoreがグローバルに利用可能であると想定します。また、Backboneはそれ自体をモジュールとして登録しないため、他のライブラリと矛盾するようになっていることに注意する必要があります。これは、私が思いつく最高のmain.jsです。
require(
{
paths: {
'backbone': 'libs/backbone/backbone-require',
'templates': '../templates'
}
},
[
// jQuery registers itself as a module.
'http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js',
// Underscore registers itself as a module.
'http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.2.1/underscore-min.js'
], function() {
// These nested require() calls are just due to how Backbone is built. Underscore basically says if require()
// is available then it will automatically register an "underscore" module, but it won't register underscore
// as a global "_". However, Backbone expects Underscore to be a global variable. To make this work, we require
// the Underscore module after it's been defined from within Underscore and set it as a global variable for
// Backbone's sake. Hopefully Backbone will soon be able to use the Underscore module directly instead of
// assuming it's global.
require(['underscore'], function(_) {
window._ = _;
});
require([
'order!http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.5.3/backbone-min.js',
'order!app'
], function(a, app) {
app.initialize();
})
});
オプティマイザーは機能しますが、機能していることに言及する必要があります。次のものを受け取ります。
Tracing dependencies for: main
js: "/home/httpd/aahardy/requirejs/r.js", line 7619: exception from uncaught JavaScript throw: Error: Error: Error evaluating module "undefined" at location "/home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js":
JavaException: Java.io.FileNotFoundException: /home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js (No such file or directory)
fileName:/home/httpd/aahardy/phoenix/trunk/ui/js/../../ui-build/js/underscore.js
lineNumber: undefined
http://requirejs.org/docs/errors.html#defineerror
In module tree:
main
これを処理するより良い方法はありますか?ありがとう!
RequireJS 2.X は、新しい shim
構成を使用して、BackboneやUnderscoreなどの非AMDモジュールをより適切に有機的にアドレス指定します。
shim
構成は簡単に使用できます。(1)依存関係(deps
)があれば、それを記述します(paths
構成からのもの、または有効なパス自体)。 (2)(オプション)シミングするファイルからグローバル変数名を指定します。これは、それを必要とするモジュール関数にエクスポートする必要があります。 (エクスポートを指定しない場合、require/define関数に何も渡されないため、グローバルを使用するだけで済みます。)
以下に、Backboneをロードするshim
の簡単な使用例を示します。また、依存関係がない場合でも、アンダースコアのエクスポートが追加されます。
require.config({
shim: {
underscore: {
exports: '_'
},
backbone: {
deps: ["underscore", "jquery"],
exports: "Backbone"
}
}
});
//the "main" function to bootstrap your code
require(['jquery', 'underscore', 'backbone'], function ($, _, Backbone) { // or, you could use these deps in a separate module using define
});
注:この簡略化されたコードは、jquery、backbone、underscoreが「jquery.js」、「backbone.js」、「underscore.js」という名前のファイルにあることを前提としています。 「この「メイン」コードと同じディレクトリに配置します(これはrequireのbaseURLになります)そうでない場合は、 paths config を使用する必要があります。
私は個人的に、組み込みのshim
機能を使用して、分岐バージョンのBackbone&Underscoreを使用しない利点が、他の一般的な回答で推奨されているAMDフォークを使用する利点を上回っていると思いますが、どちらの方法でも機能します。
Update:バージョン1.3.0以降 nderscoreはAMD(RequireJS)サポートを削除しました 。
amdjs/Backbone 0.9.1 および amdjs/Underscore 1.3.1 を、James Burke(RequireJSのメンテナー)からのAMDサポートと共に使用できます。
アンダースコアとバックボーンのAMDサポート に関する詳細情報。
// main.js using RequireJS 1.0.7
require.config({
paths: {
'jquery': 'libs/jquery/1.7.1/jquery',
'underscore': 'libs/underscore/1.3.1-amdjs/underscore', // AMD support
'backbone': 'libs/backbone/0.9.1-amdjs/backbone', // AMD support
'templates': '../templates'
}
});
require([
'domReady', // optional, using RequireJS domReady plugin
'app'
], function(domReady, app){
domReady(function () {
app.initialize();
});
});
モジュールは適切に登録されており、注文プラグインは必要ありません。
// app.js
define([
'jquery',
'underscore',
'backbone'
], function($, _, Backbone){
return {
initialize: function(){
// you can use $, _ or Backbone here
}
};
});
Backboneは、依存関係を独自に取得するようになったため、実際にはオプションです。
// app.js
define(['jquery', 'backbone'], function($, Backbone){
return {
initialize: function(){
// you can use $ and Backbone here with
// dependencies loaded i.e. Underscore
}
};
});
AMD sugar を使用すると、次のように書くこともできます。
define(function(require) {
var Backbone = require('backbone'),
$ = require('jquery');
return {
initialize: function(){
// you can use $ and Backbone here with
// dependencies loaded i.e. Underscore
}
};
});
オプティマイザーエラーについて:ビルド構成を再確認してください。パス設定がオフになっていると思います。 RequireJS Docsに似たディレクトリ設定 がある場合は、次を使用できます。
// app.build.js
({
appDir: "../",
baseUrl: "js",
dir: "../../ui-build",
paths: {
'jquery': 'libs/jquery/1.7.1/jquery',
'underscore': 'libs/underscore/1.3.1-amdjs/underscore',
'backbone': 'libs/backbone/0.9.1-amdjs/backbone',
'templates': '../templates'
},
modules: [
{
name: "main"
}
]
})
参考のために、バージョン1.1.1(〜Feb '13)の時点で、Backboneも 自身をAMDモジュールとして登録します です。 shim configを使用せずにrequirejsで動作します。 ( James Burkeのamdjs fork も1.1.0以降更新されていません)
私は直接書き留めます。requirejs.orgの説明を読むことができます。以下のコードを日常使用のスニペットとして使用できます。 (p.s.私はyeomanを使用しています)(多くのものが更新されているため、2014年2月の時点でこれを投稿しています。)
Index.htmlにスクリプトが含まれていることを確認してください
<!-- build:js({app,.tmp}) scripts/main.js -->
<script data-main="scripts/main" src="bower_components/requirejs/require.js"></script>
<!-- endbuild -->
次に、main.jsで
require.config({
shim: {
'backbone': {
deps: ['../bower_components/underscore/underscore.js', 'jquery'],
exports: 'Backbone'
}
},
paths: {
jquery: '../bower_components/jquery/jquery',
backbone: '../bower_components/backbone/backbone'
}
});
require(['views/app'], function(AppView){
new AppView();
});
app.js
/**
* App View
*/
define(['backbone', 'router'], function(Backbone, MainRouter) {
var AppView = Backbone.View.extend({
el: 'body',
initialize: function() {
App.Router = new MainRouter();
Backbone.history.start();
}
});
return AppView;
});
役に立てば幸いです!
良いニュース、Underscore 1.6.0はrequirejs defineをサポートするようになりました!!!
これより下のバージョンにはshimが必要です。または、underscore.jsが必要な場合、「_」グローバル変数が破壊されないことをやみくもに期待します。
単にロードするだけで
requirejs.config({
paths: {
"underscore": "PATH/underscore-1.6.0.min",
}
});
require.config({
waitSeconds: 500,
paths: {
jquery: "libs/jquery/jquery",
jqueryCookie: "libs/jquery/jquery.cookie",
.....
},
shim: {
jqxcore: {
export: "$",
deps: ["jquery"]
},
jqxbuttons: {
export: "$",
deps: ["jquery", "jqxcore"]
}
............
}
});
require([
<i> // Load our app module and pass it to our definition function</i>
"app"
], function(App) {
// The "app" dependency is passed in as "App"
// Again, the other dependencies passed in are not "AMD" therefore don't pass a parameter to this function
App.initialize();
});