0

我有一个与 commonjs 兼容的库/对象,并且我有另一个库/对象将自身添加到第一个库/对象中。

我是否需要为 commonjs 手动包装第二个库,还是应该可以通过第一个库访问它?

我使用的两个库是backbone.js 和backfire.js。

bonejs 已经导出了它的对象,我可以很好地访问它们。

backfirejs 添加到主干对象:

Backfire.js:

Backbone.Firebase = function(ref) {
this._fbref = ref;
this._children = [];
if (typeof ref == "string") {
this._fbref = new Firebase(ref);
}
_.bindAll(this);
this._fbref.on("child_added", this._childAdded);
this._fbref.on("child_moved", this._childMoved);
this._fbref.on("child_changed", this._childChanged);
this._fbref.on("child_removed", this._childRemoved);
};

如何使用 commonjs 访问 Firebase 对象?

4

0 回答 0