function Emitter() {
}
Emitter.prototype.on = function(evtype, fn) {
this._events = this._events || {};
this._events[evtype] = this._events[evtype] || [];
if (this._events[evtype].indexOf(fn) !== -1) return;
this._events[evtype].push(fn);
}
Emitter.prototype.off = function(evtype, fn) {
this._events = this._events || {};
if (evtype in this._events === false) return;
fn && this._events[evtype].splice(this._events[evtype].indexOf(fn), 1);
!fn && delete this._events[evtype];
}
Emitter.prototype.emit = function(evtype, detail) {
this._events = this._events || {};
var self = this;
if (evtype in this._events === false) return;
this._events[evtype].forEach(function(fn, i) {
fn.call(self, detail);
});
}
Emitter.eventify = function(Klass) {
Klass.prototype = Object.create(Klass.prototype);
for (var attr in Emitter.prototype) {
Klass.prototype[attr] = Emitter.prototype[attr]
}
return Klass;
}
(function() {
var cache = {};
function define(deps, fn) {
// var emitter = new Emitter();
var params = [];
var count = 0;
var id = document.currentScript.id || 'require_main';
cache[id] = cache[id] || new Emitter();
if (deps.length) {
deps.forEach(function(n, i) {
count++;
loadModule(n, function() {
count--;
params[i] = cache[n].export;
if (count === 0) {
deps_loaded();
}
});
})
}
else {
deps_loaded();
}
function deps_loaded() {
cache[id].export = fn.apply(null, params);
cache[id].emit('loaded');
}
}
function insertScript(id) {
var s = document.createElement('script');
s.id = id;
s.src = id + '.js';
s.charset = 'utf-8';
document.getElementsByTagName('head')[0].appendChild(s);
}
function loadModule(id, fn) {
if (cache[id]) {
cache[id].export ? fn() : cache[id].on('loaded', fn);
}
else {
insertScript(id);
cache[id] = new Emitter;
cache[id].on('loaded', fn);
}
}
window.define = define;
})();
原生js实现requirejs (阉割版)
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 今天在做按钮时,需要给按钮做一个按下去的效果,想着用增加一个class替换背景颜色的方法去做,但是才发现不知道在原...