雪幕拉开,飘然而至分外美妙,初起便显现出意境;雪落十分,然间有种喜悦在心间荡漾,纷飞飘扬尽享每一刻青春的激情;飞舞的雪花,感受芬芳的韵味,迷人心脾围绕在身旁;耳畔,时常想有沙沙的声音那样的动听,百听不厌,着迷在这一刻升起动人心怀的旋律。
本文实例讲述了RequireJS用法。分享给大家供大家参考,具体如下:
建立如下工程目录:
|-test
|-index.html
|-index.js
|-main.js
|-require.min.js
|-test.js
其中,index.html如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Index</title> </head> <body> <script type="text/javascript" data-main="main.js" src="require.js"></script> </body> </html>
data-main为入口。
main.js如下:
define(['require','main'],function (require) { require(['index','test'],function (index,test) { console.log(index.index()); console.log(test.test()); }); });
index.js如下:
define(['require','index'],function (require) { var index = { index:function () { console.log("index"); } }; return index; });
test.js如下:
define(['require','test'],function (require) { var test = { test:function () { console.log("test"); } }; return test; });
当要简单包装CommonJS来定义模块,则main.js改为:
define(function(require, exports, module) { var index = require('index'); var test = require('test'); } );
即可引入index.js 和 test.js。
希望本文所述对大家RequireJS程序设计有所帮助。
到此这篇关于RequireJS用法简单示例就介绍到这了。有风浪,就不能显示帆的本色;没有曲折,就无法品味人生的乐趣。更多相关RequireJS用法简单示例内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!