经典开场
// Layui;! function (win) { var Lay = function () { this.v = '2.5.5'; }; win.layui = new Lay();}(window);// Jquery(function (global, factory) { "use strict"; if (typeof module === "object" && typeof module.exports === "object") { module.exports = global.document ? factory(global, true) : function (w) { if (!w.document) { throw new Error("jQuery requires a window with a document"); } return factory(w); }; } else { factory(global); }})(typeof window !== "undefined" ? window : this, function (window, noGlobal) { var jQuery = function (selector, context) { return new jQuery.fn.init(selector, context); }; return jQuery;});
这是一种很经典的开场方式,以 ! 定义一个函数并立即执行,并且将对象赋值到全局 window 变量上。当然除了 ! 还有 ~ 等符号都可以定义后面的这个函数,而 ; 应该是为了防止其他的代码对本身造成影响。
实际上( function (window) { "use strict"; } )( window )
的写法更被我们理解,如Jquery未压缩的源码。而!定义函数的方法唯一优势就是代码相对较少,所以压缩后的Js代码大多数会以!开头。
动态加载
Lay.prototype.link = function (href, fn, cssname) { var that = this, link = doc.createElement('link'), head = doc.getElementsByTagName('head')[0]; if (typeof fn === 'string') cssname = fn; var app = (cssname || href).replace(/\.|\//g, ''); var id = link.id = 'layuicss-' + app, timeout = 0; link.rel = 'stylesheet'; link.href = href + (config.debug ? '?v=' + new Date().getTime() : ''); link.media = 'all'; if (!doc.getElementById(id)) { head.appendChild(link); } if (typeof fn != 'function') return that; (function poll() { if (++timeout > config.timeout * 1000 / 100) { return error(href + ' timeout'); }; if (parseInt(that.getStyle(doc.getElementById(id), 'width')) === 1989) { fn(); } else { setTimeout(poll, 100); } }()); return that;}
先来看看官方文档:
方法:layui.link(href)
href 即为 css 路径。注意:该方法并非是你使用 layui 所必须的,它一般只是用于动态加载你的外部 CSS 文件。
虽然官方只给出了一个参数,但是我们看源码的话可以知道后两个参数是加载完后运行的函数和自定义的Id。
有趣的是,临时创建的 poll函数 如果parseInt(that.getStyle(doc.getElementById(id), 'width')) === 1989
判断为 false ,也就是样式没有被引入的时候会重新调用 poll函数 最后要么加载成功循环结束,要么加载超时调用 Layui hint 打印出超时信息。
因为同样的手段在加载 module 时也同样使用到,所以如果你使用过 Layui 那么[module] is not a valid module
这样的警告或多或少能遇到几次。
模块引入
用过 Layui 的兄dei应该对 layui.use 不陌生,先来看官方文档:
方法:layui.use([mods], callback)
layui 的内置模块并非默认就加载的,他必须在你执行该方法后才会加载。
对于用了 Layui 有段时间的我来说,也只是按照官方的例子使用,并不知道实现的原理。
接下来就是见证遗迹的时候,看看 layui.use 做了什么:
Lay.fn.use = function (apps, callback, exports) { function onScriptLoad(e, url) { var readyRegExp = navigator.platform === 'PLaySTATION 3' ? /^complete$/ : /^(complete|loaded)$/; if (e.type === 'load' || (readyRegExp.test((e.currentTarget || e.srcElement).readyState))) { config.modules[item] = url; head.removeChild(node); (function poll() { if (++timeout > config.timeout * 1000 / 4) { return error(item + ' is not a valid module'); }; config.status[item] ? onCallback() : setTimeout(poll, 4); }()); } } function onCallback() { exports.push(layui[item]); apps.length > 1 ? that.use(apps.slice(1), callback, exports) : (typeof callback === 'function' && callback.apply(layui, exports)); } var that = this, dir = config.dir = config.dir ? config.dir : getPath; var head = doc.getElementsByTagName('head')[0]; apps = typeof apps === 'string' ? [apps] : apps; if (window.jQuery && jQuery.fn.on) { that.each(apps, function (index, item) { if (item === 'jquery') { apps.splice(index, 1); } }); layui.jquery = layui.$ = jQuery; } var item = apps[0], timeout = 0; exports = exports || []; config.host = config.host || (dir.match(/\/\/([\s\S]+?)\//) || ['//' + location.host + '/'])[0]; if (apps.length === 0 || (layui['layui.all'] && modules[item]) || (!layui['layui.all'] && layui['layui.mobile'] && modules[item])) { return onCallback(), that; } if (config.modules[item]) { (function poll() { if (++timeout > config.timeout * 1000 / 4) { return error(item + ' is not a valid module'); }; if (typeof config.modules[item] === 'string' && config.status[item]) { onCallback(); } else { setTimeout(poll, 4); } }()); } else { var node = doc.createElement('script'), url = (modules[item] ? dir + 'lay/' : /^\{\/\}/.test(that.modules[item]) ? '' : config.base || '') + (that.modules[item] || item) + '.js'; node.async = true; node.charset = 'utf-8'; node.src = url + function () { var version = config.version === true ? config.v || (new Date()).getTime() : config.version || ''; return version ? '?v=' + version : ''; }(); head.appendChild(node); if (!node.attachEvent || (node.attachEvent.toString && node.attachEvent.toString().indexOf('[native code]') < 0) || isOpera) { node.addEventListener('load', function () { onScriptLoad(e, url); }, false); } else { node.addEventListener('onreadystatechange', function (e) { onScriptLoad(e, url); }); } config.modules[item] = url; } return that;};
首先跳过前两个创建的函数,经过一堆巴拉巴拉的赋值后来到第2个if中我们直接可以判断语句apps.length === 0
,根据文档可知我们第一个参数是一个数组 [mods] ,当然前面的赋值apps = typeof apps === 'string' ? [apps] : apps;
可以看出即使你传的是一个字符串也会被封装成数组。
很明显第一次进来apps.length === 0
和下面的if ( config.modules[item] )
也必为 false ,那么我们直接移步到 else 内。
创建一个 script 元素并赋予属性和模块的地址,通过 appendChild 追加到 head 之后留下一个 addEventListener 监听 script 的加载( ps:attachEvent 是给非人类使用的浏览器准备的 )并将开始创建的 function onScriptLoad(e, url)
函数抛进去,然后整段代码除了return that
到这里戛然而止。
再来看看function onScriptLoad(e, url)
函数,首先开幕雷击 "PLaySTATION 3" === navigator.platform
?
仅关心PC端浏览器的部分e.type === 'load'
, 因为监听的是 load 所以这里必为 true 并执行config.modules[item] = url
后将追加的 script 元素移除。剩余的代码就是动态加载时使用的技巧,直到 config.status[item]
为 true 时循环结束。
定义模块
由于config.status[item]
不会自动变成 true,之后的骚操作由 layui.define 接手。
先看官方文档:
方法:layui.define([mods], callback)
通过该方法可定义一个 layui 模块。参数 mods 是可选的,用于声明该模块所依赖的模块。callback 即为模块加载完毕的回调函数,它返回一个 exports 参数,用于输出该模块的接口。
以比较常用的 laypage.js 模块为例,基础源码如下:
// Laypage 模块的部分代码(部分变量名为猜测,但不影响内容本身)layui.define(function (exports) { 'use strict'; var MOD_NAME = 'laypage', LayPage = function (options) { var that = this; that.config = options || {}, that.config.index = ++laypage.index, that.render(true); }; var laypage = { render: function (options) { var laypage = new LayPage(options); return laypage.index }, index: layui.laypage ? layui.laypage.index + 10000 : 0, on: function (elem, even, fn) { return elem.attachEvent ? elem.attachEvent("on" + even, function (param) { param.target = param.srcElement, fn.call(elem, param) }) : elem.addEventListener(even, fn, false), this } }; exports(MOD_NAME, laypage);});
因为 Layui 已经注册了全局的变量,所以当模块文件通过元素追加的方式引入时,调用了 layui.define 方法:
Lay.fn.define = function (deps, callback) { var that = this, type = typeof deps === 'function', mods = function () { var e = function (app, exports) { layui[app] = exports; config.status[app] = true; } typeof callback === 'function' && callback(function (app, exports) { e(app, exports); config.callback[app] = function () { callback(e); } }); return this; }; type && (callback = deps, deps = []); if (!layui['layui.all'] && layui['layui.mobile']) { return mods.call(that); } else { that.use(deps, mods); return that; }};
因为不管你在定义的模块中有没有引入其他模块,如 laypage 和 laytpl 这些 Layui 本身提供的模块都会因 (callback = deps, deps = [])
回到 [mods], callback 的参数格式。
再经过一系列巴拉巴拉的步骤回到定义的 mods 方法中,由layui[app] = exports, config.status[app] = true
给全局 layui 变量添加属性(app)且给属性赋值(exports),并把 status 改为 true 至此模块加载完成。
总结
正如 Layui 官方所说:我们认为,这恰是符合当下国内绝大多数程序员从旧时代过渡到未来新标准的最佳指引。
作为一个后端的工作者(以后可能要接触前端框架的人)没有接触过前端框架,只对原生态的 HTML / CSS / JavaScript 有所了解,那么 Layui 无非是较优的选择。
而写这篇文章无非就是为了感谢 Layui 对非前端工作者做出的贡献,也可能是我对使用了两年多 Layui 最后的告别吧,感谢贤心。
相关网站
- Layui - 经典模块化前端 UI 框架
- UglifyJS - JS压缩器
其他
如果你没有接触过 UglifyJS 或其他 JS 压缩器,而你又恰巧使用 Visual Studio Code 工具开发,那么 Minify 扩展插件就已经足够日常使用了。
原文转载:http://www.shaoqun.com/a/596582.html
笨鸟:https://www.ikjzd.com/w/2713
Layui模块加载原理基础解析,适合使用Layui的新手观看经典开场//Layui;!function(win){varLay=function(){this.v='2.5.5';};win.layui=newLay();}(window);//Jquery(function(global,factory){"usestrict";if(typeofmodule
空中云汇:https://www.ikjzd.com/w/2684
跨境通电子商务网站:https://www.ikjzd.com/w/1329
自贸区跨境通网站:https://www.ikjzd.com/w/1329
火爆全球的明星产品疯狂发案维权,这些侵权陷阱你一定要知道!:https://www.ikjzd.com/home/133042
返校季电子邮件营销怎么做?分享4个有效的邮件营销策略!:https://www.ikjzd.com/home/102071
数据报告 | 北美成购物App第一大市场:https://www.ikjzd.com/home/132305
No comments:
Post a Comment