相容AMD,nodejs/commonjs規範的模組定義

來源:互聯網
上載者:User

從knockoutjs源碼中讀到了一個很好的能相容AMD,commonjs規範的模組定義。看代碼

//閉包執行一個立即定義的匿名函數!function(factory) {    //factory是一個函數,下面的koExports就是他的參數    // Support three module loading scenarios    if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {        // [1] CommonJS/Node.js        // [1] 支援在module.exports.abc,或者直接exports.abc        var target = module['exports'] || exports; // module.exports is for Node.js        factory(target);    } else if (typeof define === 'function' && define['amd']) {        // [2] AMD anonymous module        // [2] AMD 規範         //define(['exports'],function(exports){           //    exports.abc = function(){}        //});        define(['exports'], factory);    } else {        // [3] No module loader (plain <script> tag) - put directly in global namespace        factory(window['ko'] = {});    }}(function(koExports){    //ko的全域定義 koExports是undefined 對應著上面的[3] 這種情況    var ko = typeof koExports !== 'undefined' ? koExports : {};    //定義一個ko的方法    ko.abc = function(s){        alert(s);    }});//[3]中情況的調用ko.abc("msg");

非常巧妙的閉包實現了。三種方式的相容。摘出來mark一下。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.