我正在尝试为我的骨干应用创建命名空间,以便我可以全局拨打电话。
通常,我会这样做:
var myNamespace = window.myNamespace || {};
myNamespace.SomeView = Backbone.View.extend(..);
不确定如何使用require js
实现此目的答案 0 :(得分:5)
您可以在require
或define
来电中执行相同操作,window
仍在那里(如果您使用的是浏览器)。
// views/app.js
define(['router', 'views/main-view'], function (router, mainView) {
var App = function () { /* main app module */ };
// do your "global" export
window.App = App;
return App;
});
// views/header-view.js
define(['views/app', 'models/user'], function (App, User) {
// your header view code here
// note that you have access to `App` already in a closure
// but you can still talk to it by doing
globalAppReference = window.App;
globalAppReference === App; // true
});
问题是你为什么需要它?理想情况下,所有模块都将使用requireJS定义,因此您不需要通过全局对象来引用它们。