当前位置:   article > 正文

uni-app 黑魔法探秘 (一)——重写内置标签

uniapp 标签上写方法

一、背景

政采前端团队的移动端跨端解决方案选择的是 uni-app。跨端方案的好处就是一码多端,即书写一次就可以输出到 web、小程序、Anroid、iOS 等各端。既然是开发,那必然少不了配套的组件库和方法库,而我们公司因为历史原因存在一些的非 uni-app 的项目,vue2 和 vue3 也都在用,而重构的收益又不高,那如何开发一套多个技术栈下都能用的组件库&方法库就成为了我们最大的挑战。

在 uni-app 项目的开发过程中,我和小伙伴们不断为 uni-app 中一些写法感到好奇。譬如如何重写内置标签、类似 c++ 中预处理器指令(https://learn.microsoft.com/zh-cn/cpp/preprocessor/preprocessor-directives?view=msvc-170)的条件编译、为什么 vue 文件中我没加 scoped 也会自动加上命名空间。后续深入了解才发现,uni-app 魔改了 vue 运行时,并且自制了一些 webpack 插件来实现。所以笔者希望通过《uni-app 黑魔法探秘》系列文章,将探索 uni-app、vue、webpack 的心路历程分享给大家,希望通过这一系列文章,最终读者自己也能实现一个简单的跨端框架。

开篇就先从如何重写内置标签讲起。什么是内置标签呢?就是 html 里约定的一些元素(https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element),譬如 div、button 等和 svg 里约定的一些标签譬如 image、view 等。

二、准备工作

先做些准备工作,创建两个项目。 

1)通过 vue-cli 生成一个 vue2 项目,后续重写内置的组件的逻辑放在这个项目里。

vue create vue2-project

2)再通过 vue-cli 生成一个 uni-app 项目,作为对照组。

vue create -p dcloudio/uni-preset-vue uni-app-project

PS:本人 node 版本为 14.19.3,vue-cli 版本为 4.5.13,vue-cli 生成的项目中 vue 版本为 2.7.14

三、重写 html 标签,以 button 标签举例

<button>click me</button>

先让我们看看 uni-app 会把上面的 button 代码转换成什么样:9a8b8281840fd8c3288f13c37699311e.png

重写 button 标签有什么难的呢。我直接写一个组件,然后注册不就可以用了吗?

  1. <template>
  2. <uni-button>
  3. <slot />
  4. </uni-button>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'VUniButton'
  9. }
  10. </script>
  1. <template>
  2. <div id="app">
  3. <button>click me!</button>
  4. </div>
  5. </template>
  6. <script>
  7. import UniButton from './components/UniButton.vue'
  8. export default {
  9. name: 'App',
  10. components: {
  11. 'button': UniButton,
  12. }
  13. }
  14. </script>

结果是 button 根本没有被编译成 uni-button,并且控制台里能看到明显的错误1a77c1f583e34577e1978d0548935bb6.png

通过错误堆栈找到 vue.runtime.esm.js@4946中对应的代码83c6b11d66d79d201f7fc8464e16541c.png

关键词是 isBuiltInTag、config.isReservedTag,再顺藤摸瓜找到如下源码:

  1. var isBuiltInTag = makeMap('slot,component'true);
  2. var isHTMLTag = makeMap('html,body,base,head,link,meta,style,title,' + 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' + 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' + 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' + 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' + 'embed,object,param,source,canvas,script,noscript,del,ins,' + 'caption,col,colgroup,table,thead,tbody,td,th,tr,' + 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' + 'output,progress,select,textarea,' + 'details,dialog,menu,menuitem,summary,' + 'content,element,shadow,template,blockquote,iframe,tfoot');
  3. // this map is intentionally selective, only covering SVG elements that may
  4. // contain child elements.
  5. var isSVG = makeMap('svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' + 'foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' + 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view'true);
  6. var isReservedTag = function(tag) {
  7.   return isHTMLTag(tag) || isSVG(tag);
  8. };

可以看到 vue 源码中枚举了 html 标签,这些标签默认不允许被重写。

通过搜索 uni-app 源码发现,isReservedTag 这个方法其实是可以重写的(虽然 vue 文档里没标注)。改写的代码如下:

  1. const overrideTags = ['button']
  2. // 1)先保存原来的 isReservedTag 逻辑
  3. const oldIsReservedTag = Vue.config.isReservedTag;
  4. Vue.config.isReservedTag = function (tag) {
  5.   // 2)在遇到 button 标签的时候,不认为是个内置标签
  6.   if (overrideTags.indexOf(tag) !== -1) {
  7.     return false;
  8.   }
  9.   // 3)非 button 标签再走原来的内置标签的判断逻辑
  10.   return oldIsReservedTag(tag);
  11. };

增加上述代码后并添加样式后, uni-button 已经能成功被渲染出来了a8de7bf1f2821ea06c13b201053d2cb9.png

但是控制台中还是有一行报错a1a8203f9930c06bcbd26afba5c0c0ba.png

还是通过错误的堆栈定位到 vue.runtime.esm.js@6274isUnknownElement这个方法。68e6f3f4c57027548b041264fb82bb25.png

然后发现也是可以被重写的,重写逻辑如下

  1. // ignoredElements 默认是 [],所以直接覆盖即可
  2. Vue.config.ignoredElements = [
  3.   'uni-button',
  4. ];

到现在为止 button 已经能被正确渲染了,main.js中的代码如下

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. Vue.config.productionTip = false
  4. // 为了解决报错 [Vue warn]: Unknown custom element: <uni-button> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
  5. // 默认是 [],所以直接覆盖即可
  6. Vue.config.ignoredElements = [
  7.   'uni-button',
  8. ];
  9. // 为了解决报错 [Vue warn]: Do not use built-in or reserved HTML elements as component id: button
  10. const overrideTags = ['button']
  11. const oldIsReservedTag = Vue.config.isReservedTag;
  12. Vue.config.isReservedTag = function (tag) {
  13.   if (overrideTags.indexOf(tag) !== -1) {
  14.     return false;
  15.   }
  16.   return oldIsReservedTag(tag);
  17. };
  18. new Vue({
  19.   render: h => h(App),
  20. }).$mount('#app')

四、重写 svg 标签,以 image 举例

我们根据上述流程再实现一个 image 组件

  1. <template>
  2. <uni-image>
  3. <img :src="src" >
  4. </uni-image>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'image',
  9. props: {
  10. src: {
  11. type: String,
  12. default: ""
  13. }
  14. },
  15. }
  16. </script>
  17. <style>
  18. uni-image {
  19. width: 320px;
  20. height: 240px;
  21. display: inline-block;
  22. overflow: hidden;
  23. position: relative;
  24. }
  25. </style>

结果发现元素是正确的,但是没有被页面上没有展示。dac840e5705d4d5c77d4a635d84e111f.png

通过 uni-app 源码(uni-app/lib/h5/ui.js@24)搜索发现其中有这样一段代码,添加后可以正确渲染了

  1. const oldGetTagNamespace = Vue.config.getTagNamespace
  2. const conflictTags = ['switch''image''text''view']
  3. Vue.config.getTagNamespace = function (tag) {
  4.   if (~conflictTags.indexOf(tag)) { // svg 部分标签名称与 uni 标签冲突
  5.     return false
  6.   }
  7.   return oldGetTagNamespace(tag) || false
  8. }

尝试理解一下,在 vue.runtime.esm.js 中搜索关键词 getTagNamespace,最终定位在这一关键行 vue.runtime.esm.js@@2873。有无上述一行代码的区别是 ns 的值为 svg 还是 false06806a321df7d378c5bfbdaa81ad006e.png

继续找到 getTagNamespace 实现逻辑,发现 vue 会通过 getTagNamespace 这个方法决定创建元素时使用的方法是 createElement 还是 createElementNS。

  1. // vue.runtime.esm.js@6263
  2. function getTagNamespace(tag) {
  3.   if (isSVG(tag)) {
  4.     return 'svg';
  5.   }
  6.   // basic support for MathML
  7.   // note it doesn't support other MathML elements being component roots
  8.   if (tag === 'math') {
  9.     return 'math';
  10.   }
  11. }
  12. // vue.runtime.esm.js@6240
  13. var namespaceMap = {
  14.   svg: 'http://www.w3.org/2000/svg',
  15.   math: 'http://www.w3.org/1998/Math/MathML'
  16. };
  17. // vue.runtime.esm.js@6317
  18. function createElement(tagName, vnode) {
  19.   var elm = document.createElement(tagName);
  20.   if (tagName !== 'select') {
  21.     return elm;
  22.   }
  23.   // false or null will remove the attribute but undefined will not
  24.   if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {
  25.     elm.setAttribute('multiple''multiple');
  26.   }
  27.   return elm;
  28. }
  29. function createElementNS(namespace, tagName) {
  30.   return document.createElementNS(namespaceMap[namespace], tagName);
  31. }

命名空间存在的意义是,一个文档可能包含多个软件模块的元素和属性,在不同软件模块中使用相同名称的元素或属性,可能会导致识别和冲突问题,而 xml 命名空间可以解决该问题。

所以为什么没法渲染的原因显而易见了。因为把一个通过 svg 命名空间的创建出来的元素,挂载在非 svg 标签下。解决方案也很好理解,重写 getTagNamespace 方法,在遇到 image 标签时,认为其不是个 svg 标签,通过 createElement 方法创建在默认命名空间下即可。

最后 main.js中的代码如下

  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. Vue.config.productionTip = false
  4. // 下面三条参考 uni-app 源码实现 uni-app/lib/h5/ui.js
  5. // ① 为了解决报错 [Vue warn]: Unknown custom element: <uni-button> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
  6. Vue.config.ignoredElements = [
  7.   'uni-button',
  8.   'uni-image',
  9. ];
  10. // ② 为了解决报错 [Vue warn]: Do not use built-in or reserved HTML elements as component id: button
  11. const overrideTags = ['button''image']
  12. // 1)先保存原来的 isReservedTag 逻辑
  13. const oldIsReservedTag = Vue.config.isReservedTag;
  14. Vue.config.isReservedTag = function (tag) {
  15.   // 2)在遇到 button 标签的时候,不认为是个内置标签
  16.   if (overrideTags.indexOf(tag) !== -1) {
  17.     return false;
  18.   }
  19.   // 3)非 button 标签再走原来的内置标签的判断逻辑
  20.   return oldIsReservedTag(tag);
  21. };
  22. // ③ 为了解决 image 标签虽然被解析,但是渲染不出来的问题
  23. // svg 部分标签名称与 uni 标签冲突
  24. const conflictTags = [
  25.   'image'
  26.   // 'switch', 
  27.   // 'text', 
  28.   // 'view',
  29. ];
  30. const oldGetTagNamespace = Vue.config.getTagNamespace;
  31. Vue.config.getTagNamespace = function (tag) {
  32.   // “~”运算符(位非)用于对一个二进制操作数逐位进行取反操作。位非运算实际上就是对数字进行取负运算,再减 1
  33.   // 等价于 conflictTags.indexOf(tag) > -1
  34.   if (~conflictTags.indexOf(tag)) {
  35.     return false;
  36.   }
  37.   return oldGetTagNamespace(tag);
  38. };
  39. new Vue({
  40.   render: h => h(App),
  41. }).$mount('#app')

五、总结

针对内置标签的解析,很庆幸 vue 还是留了一道后门的,不然就要魔改 vue 的源码了。uni-app 中有很多类似的黑魔法。为什么称之为黑魔法呢,因为其中使用的方法可能是官网中不会讲到的,或者是些需要巧思的。像魔术一样,看似很神奇,真的知道解决方案后就会恍然大悟。我相信这些黑魔法的出现并不是为了炫技,而更多的是在熟悉原理后的决策。

笔者上文的思路是在已知问题(内置标签无法解析)和答案(改写  Vue.config 方法)的前提进行的推理,纵然是这样,也让我颇费功夫,如此一想 uni-app 一个个技术关键点的实现就让我愈发感到敬佩和好奇,这也是我打算执笔写这系列文章的初衷。

- END -

关于奇舞团

奇舞团是 360 集团最大的大前端团队,代表集团参与 W3C 和 ECMA 会员(TC39)工作。奇舞团非常重视人才培养,有工程师、讲师、翻译官、业务接口人、团队 Leader 等多种发展方向供员工选择,并辅以提供相应的技术力、专业力、通用力、领导力等培训课程。奇舞团以开放和求贤的心态欢迎各种优秀人才关注和加入奇舞团。

e7a9baca5abee90d88e8fa2bee8de8da.png

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/280368
推荐阅读