欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue render深入开发讲解

程序员文章站 2022-12-02 18:58:07
简介 在使用vue进行开发的时候,大多数情况下都是使用template进行开发,使用template简单、方便、快捷,可是有时候需要特殊的场景使用template就不...

简介

在使用vue进行开发的时候,大多数情况下都是使用template进行开发,使用template简单、方便、快捷,可是有时候需要特殊的场景使用template就不是很适合。因此为了很好使用render函数,我决定深入窥探一下。各位看官如果觉得下面写的有不正确之处还望看官指出,你们与我的互动就是写作的最大动力。

场景

官网描述的场景当我们开始写一个通过 level prop 动态生成 heading 标签的组件,你可能很快想到这样实现:

<script type="text/x-template" id="anchored-heading-template">
 <h1 v-if="level === 1">
  <slot></slot>
 </h1>
 <h2 v-else-if="level === 2">
  <slot></slot>
 </h2>
 <h3 v-else-if="level === 3">
  <slot></slot>
 </h3>
 <h4 v-else-if="level === 4">
  <slot></slot>
 </h4>
 <h5 v-else-if="level === 5">
  <slot></slot>
 </h5>
 <h6 v-else-if="level === 6">
  <slot></slot>
 </h6>
</script>
vue.component('anchored-heading', {
 template: '#anchored-heading-template',
 props: {
  level: {
   type: number,
   required: true
  }
 }
})

在这种场景中使用 template 并不是最好的选择:首先代码冗长,为了在不同级别的标题中插入锚点元素,我们需要重复地使用 <slot></slot>。

虽然模板在大多数组件中都非常好用,但是在这里它就不是很简洁的了。那么,我们来尝试使用 render 函数重写上面的例子:

vue.component('anchored-heading', {
 render: function (createelement) {
  return createelement(
   'h' + this.level,  // tag name 标签名称
   this.$slots.default // 子组件中的阵列
  )
 },
 props: {
  level: {
   type: number,
   required: true
  }
 }
})

简单清晰很多!简单来说,这样代码精简很多,但是需要非常熟悉 vue 的实例属性。在这个例子中,你需要知道当你不使用 slot 属性向组件中传递内容时,比如 anchored-heading 中的 hello world!,这些子元素被存储在组件实例中的 $slots.default中。

createelement参数介绍

接下来你需要熟悉的是如何在 createelement 函数中生成模板。这里是 createelement 接受的参数:

createelement(
 // {string | object | function}
 // 一个 html 标签字符串,组件选项对象,或者
 // 解析上述任何一种的一个 async 异步函数,必要参数。
 'div',

 // {object}
 // 一个包含模板相关属性的数据对象
 // 这样,您可以在 template 中使用这些属性。可选参数。
 {
  // (详情见下一节)
 },

 // {string | array}
 // 子节点 (vnodes),由 `createelement()` 构建而成,
 // 或使用字符串来生成“文本节点”。可选参数。
 [
  '先写一些文字',
  createelement('h1', '一则头条'),
  createelement(mycomponent, {
   props: {
    someprop: 'foobar'
   }
  })
 ]
)

深入 data 对象

有一件事要注意:正如在模板语法中,v-bind:class 和 v-bind:style ,会被特别对待一样,在 vnode 数据对象中,下列属性名是级别最高的字段。该对象也允许你绑定普通的 html 特性,就像 dom 属性一样,比如 innerhtml (这会取代 v-html 指令)。

{
 // 和`v-bind:class`一样的 api
 'class': {
  foo: true,
  bar: false
 },
 // 和`v-bind:style`一样的 api
 style: {
  color: 'red',
  fontsize: '14px'
 },
 // 正常的 html 特性
 attrs: {
  id: 'foo'
 },
 // 组件 props
 props: {
  myprop: 'bar'
 },
 // dom 属性
 domprops: {
  innerhtml: 'baz'
 },
 // 事件监听器基于 `on`
 // 所以不再支持如 `v-on:keyup.enter` 修饰器
 // 需要手动匹配 keycode。
 on: {
  click: this.clickhandler
 },
 // 仅对于组件,用于监听原生事件,而不是组件内部使用
 // `vm.$emit` 触发的事件。
 nativeon: {
  click: this.nativeclickhandler
 },
 // 自定义指令。注意,你无法对 `binding` 中的 `oldvalue`
 // 赋值,因为 vue 已经自动为你进行了同步。
 directives: [
  {
   name: 'my-custom-directive',
   value: '2',
   expression: '1 + 1',
   arg: 'foo',
   modifiers: {
    bar: true
   }
  }
 ],
 // scoped slots in the form of
 // { name: props => vnode | array<vnode> }
 scopedslots: {
  default: props => createelement('span', props.text)
 },
 // 如果组件是其他组件的子组件,需为插槽指定名称
 slot: 'name-of-slot',
 // 其他特殊顶层属性
 key: 'mykey',
 ref: 'myref'
}

条件渲染

既然熟读以上api接下来咱们就来点实战。

之前这样写

//html
<div id="app">
  <div v-if="isshow">我被你发现啦!!!</div>
</div>
<vv-isshow :show="isshow"></vv-isshow>
//js
//组件形式      
vue.component('vv-isshow', {
  props:['show'],
  template:'<div v-if="show">我被你发现啦2!!!</div>',
});
var vm = new vue({
  el: "#app",
  data: {
    isshow:true
  }
});

render这样写

//html
<div id="app">
  <vv-isshow :show="isshow"><slot>我被你发现啦3!!!</slot></vv-isshow>
</div>
//js
//组件形式      
vue.component('vv-isshow', {
  props:{
    show:{
      type: boolean,
      default: true
    }
  },
  render:function(h){  
    if(this.show ) return h('div',this.$slots.default);
  },
});
var vm = new vue({
  el: "#app",
  data: {
    isshow:true
  }
});

列表渲染

之前是这样写的,而且v-for 时template内必须被一个标签包裹

//html
<div id="app">
  <vv-aside v-bind:list="list"></vv-aside>
</div>
//js
//组件形式      
vue.component('vv-aside', {
  props:['list'],
  methods:{
    handelclick(item){
      console.log(item);
    }
  },
  template:'<div>\
         <div v-for="item in list" @click="handelclick(item)" :class="{odd:item.odd}">{{item.txt}}</div>\
       </div>',
  //template:'<div v-for="item in list" @click="handelclick(item)" :class="{odd:item.odd}">{{item.txt}}</div>',错误     
});
var vm = new vue({
  el: "#app",
  data: {
    list: [{
      id: 1,
      txt: 'javascript',
      odd: true
    }, {
      id: 2,
      txt: 'vue',
      odd: false
    }, {
      id: 3,
      txt: 'react',
      odd: true
    }]
  }
});

render这样写

//html
<div id="app">
  <vv-aside v-bind:list="list"></vv-aside>
</div>
//js
//侧边栏
vue.component('vv-aside', {
  render: function(h) {
    var _this = this,
      ayy = this.list.map((v) => {
        return h('div', {
          'class': {
            odd: v.odd
          },
          attrs: {
            title: v.txt
          },
          on: {
            click: function() {
              return _this.handelclick(v);
            }
          }
        }, v.txt);
      });
    return h('div', ayy);

  },
  props: {
    list: {
      type: array,
      default: () => {
        return this.list || [];
      }
    }
  },
  methods: {
    handelclick: function(item) {
      console.log(item, "item");
    }
  }
});
var vm = new vue({
  el: "#app",
  data: {
    list: [{
      id: 1,
      txt: 'javascript',
      odd: true
    }, {
      id: 2,
      txt: 'vue',
      odd: false
    }, {
      id: 3,
      txt: 'react',
      odd: true
    }]
  }
});

v-model

之前的写法

//html
<div id="app">
  <vv-models v-model="txt" :txt="txt"></vv-models>
</div>
//js
//input
vue.component('vv-models', {
  props: ['txt'],
  template: '<div>\
         <p>看官你输入的是:{{txtcout}}</p>\
         <input v-model="txtcout" type="text" />\
       </div>',
  computed: {
    txtcout:{
      get(){
        return this.txt;
      },
      set(val){
        this.$emit('input', val);
      }
      
    }
  }
});
var vm = new vue({
  el: "#app",
  data: {
    txt: '', 
  }
});

render这样写

//html
<div id="app">
  <vv-models v-model="txt" :txt="txt"></vv-models>
</div>
//js
//input
vue.component('vv-models', {
  props: {
    txt: {
      type: string,
      default: ''
    }
  },
  render: function(h) {
    var self=this;
    return h('div',[h('p','你猜我输入的是啥:'+this.txt),h('input',{
      on:{
        input(event){
          self.$emit('input', event.target.value);
        }
      }
    })] );
  },
});
var vm = new vue({
  el: "#app",
  data: {
    txt: '', 
  }
});

总结

render函数使用的是javascript 的完全编程的能力,在性能上是占用绝对的优势,小编只是对它进行剖析。至于实际项目你选择那种方式进行渲染依旧需要根据你的项目以及实际情况而定。