2

我正在尝试为我的主干应用程序创建一个命名空间,以便我可以在全球范围内拨打电话。

通常,我会这样做:

var myNamespace = window.myNamespace || {};
myNamespace.SomeView = Backbone.View.extend(..);

不知道如何使用 require js 来实现这一点

4

1 回答 1

5

你可以在你的requireordefine调用中做同样的事情,window's 仍然存在(如果你在浏览器中工作)。

// 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 定义,因此您无需通过全局对象引用它们。

于 2012-12-04T15:19:24.573 回答