1. CommonJS
用於服務端模組化編程,例如nodejs就採用此規範;
require.config({ baseUrl: "js/lib", paths: {"jquery": "jquery.min", "underscore": "underscore.min", "backbone": "backbone.min" }, shim: {'underscore':{ exports: '_' }, 'backbone': { deps: ['underscore', 'jquery'], exports: 'Backbone' } } }); // exports值(输出的变量名),表明这个模块外部调用时的名称;deps数组,表明该模块的依赖性
define(function(require, exports, module){ var a = require('a'); a.foo(); };
以上是CommonJS的實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!