定义
function get (name) {
return modules[name];
}
return modules[name];
}
return {
define: define,get: get
}
})();
使用
return {
hello: hello
}
});
hello: hello
}
});
MyModules.define('test2',['test1'],function(test1) {
function age(name,age) {
console.log(test1.hello(name));
console.log(age);
}
return {
age: age
}
});
MyModules.get('test2').age('mumu','27');
以上就是本次分享的全部代码内容,大家可以测试下,如果还有任何不明白的地方可以在下方的留言区讨论,感谢大家对编程之家的支持。
原文链接:https://www.f2er.com/js/33399.html