在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、样例代码<!-- 子组件comA --> <template> <div class='demo'> <slot><slot> <slot name='test'></slot> <slot name='scopedSlots' test='demo'></slot> </div> </template> <!-- 父组件 --> <comA> <span>这是默认插槽</span> <template slot='test'>这是具名插槽</template> <template slot='scopedSlots' slot-scope='scope'>这是作用域插槽(老版){{scope.test}}</template> <template v-slot:scopedSlots='scopeProps' slot-scope='scope'>这是作用域插槽(新版){{scopeProps.test}}</template> </comA> 二、透过现象看本质插槽的作用是实现内容分发,实现内容分发,需要两个条件:
组件内部定义的
三、实现原理
从上述流程中,可以推测出: 1.父组件模板解析在子组件之前,所以父组件首先会获取到插槽模板内容 2.子组件模板解析在后,所以在子组件调用 3.作用域插槽可以获取子组件内变量,因此作用域插槽的 整个插槽的处理阶段大致分为三步:
以下面代码为例,简要概述插槽运转的过程。 <div id='app'> <test> <template slot="hello"> 123 </template> </test> </div> <script> new Vue({ el: '#app', components: { test: { template: '<h1>' + '<slot name="hello"></slot>' + '</h1>' } } }) </script> 四、父组件编译阶段编译是将模板文件解析成 { tag: 'test', scopedSlots: { // 作用域插槽 // slotName: ASTNode, // ... } children: [ { tag: 'template', // ... parent: parentASTNode, children: [ childASTNode ], // 插槽内容子节点,即文本节点123 slotScope: undefined, // 作用域插槽绑定值 slotTarget: "\"hello\"", // 具名插槽名称 slotTargetDynamic: false // 是否是动态绑定插槽 // ... } ] } 五、父组件生成渲染方法根据 with(this){ return _c('div',{attrs:{"id":"app"}}, [_c('test', [ _c('template',{slot:"hello"},[_v("\n 123\n ")])],2) ], 1) } 六、父组件生成VNode调用 { tag: 'div', parent: undefined, data: { // 存储VNode配置项 attrs: { id: '#app' } }, context: componentContext, // 组件作用域 elm: undefined, // 真实DOM元素 children: [ { tag: 'vue-component-1-test', children: undefined, // 组件为页面最小组成单元,插槽内容放放到子组件中解析 parent: undefined, componentOptions: { // 组件配置项 Ctor: VueComponentCtor, // 组件构造方法 data: { hook: { init: fn, // 实例化组件调用方法 insert: fn, prepatch: fn, destroy: fn }, scopedSlots: { // 作用域插槽配置项,用于生成作用域插槽VNode slotName: slotFn } }, children: [ // 组件插槽节点 tag: 'template', propsData: undefined, // props参数 listeners: undefined, data: { slot: 'hello' }, children: [ VNode ], parent: undefined, context: componentContext // 父组件作用域 // ... ] } } ], // ... } 在 七、子组件状态初始化实例化子组件时,会在 八、子组件编译阶段子组件在编译阶段,会将 { tag: 'h1', parent: undefined, children: [ { tag: 'slot', slotName: "\"hello\"", // ... } ], // ... } 九、子组件生成渲染方法生成的渲染方法如下,其中 // 渲染方法 with(this){ return _c('h1',[ _t("hello") ], 2) } // 源码路径:vue-dev\src\core\instance\render-helpers\render-slot.js export function renderSlot ( name: string, fallback: ?Array<VNode>, props: ?Object, bindObject: ?Object ): ?Array<VNode> { const scopedSlotFn = this.$scopedSlots[name] let nodes if (scopedSlotFn) { // scoped slot props = props || {} if (bindObject) { if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) { warn( 'slot v-bind without argument expects an Object', this ) } props = extend(extend({}, bindObject), props) } // 作用域插槽,获取插槽VNode nodes = scopedSlotFn(props) || fallback } else { // 获取插槽普通插槽VNode nodes = this.$slots[name] || fallback } const target = props && props.slot if (target) { return this.$createElement('template', { slot: target }, nodes) } else { return nodes } } 作用域插槽与具名插槽区别 <!-- demo --> <div id='app'> <test> <template slot="hello" slot-scope='scope'> {{scope.hello}} </template> </test> </div> <script> var vm = new Vue({ el: '#app', components: { test: { data () { return { hello: '123' } }, template: '<h1>' + '<slot name="hello" :hello="hello"></slot>' + '</h1>' } } }) </script> 作用域插槽与普通插槽相比,主要区别在于插槽内容可以获取到子组件作用域变量。由于需要注入子组件变量,相比于具名插槽,作用域插槽有以下几点不同: 作用域插槽在组装渲染方法时,生成的是一个包含注入作用域的方法,相对于 with (this) { return _c('div', { attrs: { "id": "app" } }, [_c('test', { scopedSlots: _u([{ key: "hello", fn: function(scope) { return [_v("\n " + _s(scope.hello) + "\n ")] } }]) })], 1) } 子组件初始化时会处理具名插槽节点,挂载到组件 除此之外,其他流程大致相同。插槽作用机制不难理解,关键还是模板解析与生成render函数这两步内容较多,流程较长,比较难理解。 十、使用技巧通过以上解析,能大概了解插槽处理流程。工作中大部分都是用模板来编写 10.1、具名插槽插槽处理一般分为两块:
<div id='app'> <!-- <test>--> <!-- <template slot="hello">--> <!-- 123--> <!-- </template>--> <!-- </test>--> </div> <script> new Vue({ // el: '#app', render (createElement) { return createElement('test', [ createElement('h3', { slot: 'hello', domProps: { innerText: '123' } }) ]) }, components: { test: { render(createElement) { return createElement('h1', [ this.$slots.hello ]); } // template: '<h1>' + // '<slot name="hello"></slot>' + // '</h1>' } } }).$mount('#app') </script> 10.2、作用域插槽作用域插槽使用比较灵活,可以注入子组件状态。作用域插槽 + <div id='app'> <!-- <test>--> <!-- <span slot="hello" slot-scope='scope'>--> <!-- {{scope.hello}}--> <!-- </span>--> <!-- </test>--> </div> <script> new Vue({ // el: '#app', render (createElement) { return createElement('test', { scopedSlots:{ hello: scope => { // 父组件生成渲染方法中,最终转换的作用域插槽方法和这种写法一致 return createElement('span', { domProps: { innerText: scope.hello } }) } } }) }, components: { test: { data () { return { hello: '123' } }, render (createElement) { // 作用域插槽父组件传递过来的是function,需要手动调用生成VNode let slotVnode = this.$scopedSlots.hello({ hello: this.hello }) return createElement('h1', [ slotVnode ]) } // template: '<h1>' + // '<slot name="hello" :hello="hello"></slot>' + // '</h1>' } } }).$mount('#app') </script> 以上就是浅谈Vue插槽实现原理的详细内容,更多关于Vue插槽的资料请关注极客世界其它相关文章! |
请发表评论