我想从一个模式子模块与其父模块共享一个下划线mixin。这是我的设置:
.
├── index.js
└── node_modules
└── submodule
├── index.js
├── node_modules
│ └── underscore
│ ├── LICENSE
│ ├── README.md
│ ├── package.json
│ ├── underscore-min.js
│ └── underscore.js
└── package.json
./ index.js:
var submodule = require('submodule')
, _ = require('underscore');
console.log('In main module : %s', _.capitalize('hello'));
./ node_modules /子模块/ index.js:
var _ = require('underscore');
_.mixin({
capitalize : function(string) {
return string.charAt(0).toUpperCase() + string.substring(1).toLowerCase();
}
});
console.log('In submodule : %s', _.capitalize('hello'));
当我运行node index.js
时,我得到以下输出:
In submodule : Hello
/Users/lxe/devel/underscore-test/index.js:4
console.log('In main module : %s', _.capitalize('hello'));
^
TypeError: Object function (obj) {
if (obj instanceof _) return obj;
if (!(this instanceof _)) return new _(obj);
this._wrapped = obj;
} has no method 'capitalize'
如您所见,mixin已在子模块(In submodule : Hello
)中注册。但是,主模块中未定义_.capitalize
。
如何让模块共享mixins?
答案 0 :(得分:0)
我想我明白了!我需要稍微改变一下我的树:
├── index.js
└── node_modules
├── submodule
│ ├── index.js
│ └── package.json
└── underscore
├── LICENSE
├── README.md
├── package.json
├── underscore-min.js
└── underscore.js
现在只有根模块具有'下划线'模块。我猜测子模块中的require('下划线')要么使用主模块中的require的缓存,要么向上遍历树来查找它。