首頁  >  文章  >  web前端  >  使用javascript的模組載入器

使用javascript的模組載入器

php中世界最好的语言
php中世界最好的语言原創
2018-03-27 15:56:101611瀏覽

這次帶給大家使用javascript的模組載入器,使用javascript模組載入器的注意事項有哪些,下面就是實戰案例,一起來看一下。

定義

var MyModules = (function Manager() {
  var modules = {};
  function define (name, deps, impl) {
    for(var j = 0, length = deps.length; j < length; j++){
      deps[j] = modules[deps[j]];
    }
    modules[name] = impl.apply(impl, deps);
  }
  function get (name) {
    return modules[name];
  }
  return {
    define: define,
    get: get
  }
})();

使用

MyModules.define('test1', [], function() {
  function hello(name) {
    console.log(name);
  }
  
  return {
    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');

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

Vue.directive()的圖文詳解

AjaxUpLoad.js如何實作檔案上傳

以上是使用javascript的模組載入器的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn