真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

了解VUE的render函數(shù)的使用

Vue 推薦在絕大多數(shù)情況下使用 template 來創(chuàng)建你的 HTML。然而在一些場景中,你真的需要 JavaScript 的完全編程的能力,這就是 render 函數(shù),它比 template 更接近編譯器。 在 HTML 層, 我們決定這樣定義組件接口:通過傳入不同的level 1-6 生成h2-h7標(biāo)簽,和使用slot生成內(nèi)容

創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比古藺網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式古藺網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋古藺地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。

Hello world!

我們嘗試使用render函數(shù)實(shí)現(xiàn)上面的例子,注意使用render函數(shù),template 選項(xiàng)將被忽略。 createElement接收3個參數(shù):

第一個參數(shù)可以是HTML標(biāo)簽名,組件或者函數(shù)都可以;此參數(shù)是必須的;

第二個為數(shù)據(jù)對象{Object}(可選);

第三個為子節(jié)點(diǎn){String | Array}(可選),多個子節(jié)點(diǎn)[createElement(tag1),createElement(tag2)]。

Hello world! span

header slotspan

Vue.component('child', { render: function(createElement) { console.log(this.$slots); return createElement( 'h'+ this.level, // tagName標(biāo)簽名稱 { // 為每個h標(biāo)簽設(shè)置class 'class': { foo: true, bar: false }, // 最終被渲染為內(nèi)聯(lián)樣式 style: { color: 'red', fontSize: '14px' }, // 其他的html屬性 attrs: { id: 'foo', 'data-id': 'bar' }, // DOM屬性 domProps: { // innerHTML: 'from domProps', }, // 事件監(jiān)聽器基于 "on" // 所以不再支持如 v-on:keyup.enter 修飾器 on: { click: this.clickHandler }, // ... }, // 你可以從this.$slots獲取VNodes列表中的靜態(tài)內(nèi)容 // $slots.default用來訪問組件的不具名slot // 當(dāng)你可能需要具名slot的時候需要指定slot的name, this.$slots.header [this.$slots.default] ) }, template: '
', // 將被忽略 props: { level: { type: Number, required: true } }, methods: { clickHandler: function() { console.log('clickHandler') } } }) new Vue({ el:"#div1" })

我們現(xiàn)在可以完成這樣的組件

Hello world!

// 遞歸函數(shù)獲得helloworld文本 function getChildrenTextContent(child) { return child.map(function(node) { return node.children? getChildrenTextContent(node.children) : node.text }).join('') } Vue.component('child',{ render: function(createElement) { var hello_world = getChildrenTextContent(this.$slots.default) .toLowerCase() .replace(/\W+/g,'-') .replace(/^\-|\-$/g,''); return createElement( 'h'+ this.level, {}, [ // 創(chuàng)建一個a標(biāo)簽,設(shè)置屬性,并設(shè)置a標(biāo)簽的子節(jié)點(diǎn) createElement('a',{ attrs: { name: hello_world, href: '#' + hello_world } },this.$slots.default) ] ) }, props: { level: { type: Number, required: true } } }) new Vue({ el:"#div1" })

注意VNode的唯一性,這里兩個VNode指向同一引用是錯誤的,如果要重復(fù)創(chuàng)建多個相同元素/組件,可以使用工廠函數(shù)實(shí)現(xiàn)

Hello world!
Vue.component('child',{ // render: function(createElement) { // var myParagraphVNode = createElement('p','hello') // return createElement('div', // [myParagraphVNode, myParagraphVNode] // ) // }, render: function(createElement) { return createElement('div', Array.apply(null, {length:20}).map(function() { return createElement('p','hello') }) ) }, props: { level: { type: Number, required: true } } }) new Vue({ el:"#div1" })

使用javascript代替模板功能,某些api要自己實(shí)現(xiàn)

①使用if/else代替v-if

②使用map代替v-for

Vue.component('child',{
  render: function(createElement) {
    if (this.lists.length) {
      return createElement('ul',this.lists.map(function() {
        return createElement('li','hi')
      }))
    } else {
      return createElement('p','no lists')
    }
  },
  props: {
    level: {
      type: Number,
      required: true
    }
  },
  data: function() {
    return {
      lists: [1,2,3]
    }
  }
})

// render函數(shù)中沒有與v-model相應(yīng)的api - 你必須自己來實(shí)現(xiàn)相應(yīng)的邏輯:
Vue.component('child-msg',{
  render: function(createElement) {
    var self = this;
    return createElement('div', [
        createElement('input',{
          'on': {
            input: function(event) {
              self.value = event.target.value;
            }
          }
        }),createElement('p',self.value)
      ])
  },
  props: {
    level: {
      type: Number,
      required: true
    }
  },
  data: function() {
    return {
      value: ''
    }
  }
})
new Vue({
  el:"#div1"
})

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


網(wǎng)頁標(biāo)題:了解VUE的render函數(shù)的使用
文章地址:http://weahome.cn/article/jecejs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部