我正在定义一个模块Foo
,并在另一个模块中实例化它Bar
。我有第三个模块Other
,我想为它提供创建和修改的相同Foo
实例Bar
。
define('Foo', [], function() {
var test = function() {
this.foo = 'foo';
};
return test;
});
define('Bar', ['Foo'], function(Foo) {
Foo = new Foo();
Foo.bar = 'bar';
console.log('From bar', Foo);
});
define('Other', ['Foo'], function(Foo) {
console.log('From the other', Foo);
});
require(['Foo', 'Bar', 'Other'], function(Foo, Bar, Other) {
console.log('Bringing it all together');
});
http://jsfiddle.net/radu/Zhyx9/
没有要求,我会做类似的事情:
App = {};
App.Foo = function() {
this.foo = 'foo';
}
App.Bar = function() {
App.Foo = new App.Foo();
App.Foo.bar = 'bar';
console.log('From bar', App.Foo);
}
App.Other = function() {
console.log('From other', App.Foo);
}
App.Bar();
App.Other();
http://jsfiddle.net/radu/eqxaA/
我知道我必须在这里遗漏一些东西,因为这是我第一次尝试 requirejs,所以可能混入了某种误解。这个例子可能看起来很做作,但我在将项目硬塞到使用 Backbone 和 RequireJS 时遇到了类似的情况. </p>