阅读 requireJs 文档,
以修复循环依赖,建议使用exports
为模块创建一个空对象,该对象可立即供其他模块引用。
我尝试了这段代码,但它似乎不起作用。怎么了?
PS:
阅读评论以查看输出,
尤其是 setTimeout 调用中的 B 模块。
// A module
define([
'b'
], function (b) {
console.log('B:', b); // B, Object
var A = {
boo: 1
};
return A;
});
// B module
define([
'a',
'exports'
], function (a, exports) {
console.log('A:', a); // A, undefined (as I was expecting)
exports.A = function () {
return a;
}
var B = {
bar: 1
};
setTimeout(function () {
console.log('exports.A', exports.A()); // exports.A undefined
// I would like to access the A object
// which is defined in A module
}, 500);
return B;
});
// main.js
(function () {
define([
'a'
], function () {
});
}());