91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

說說Vue.js中的functional函數化組件的使用

發布時間:2020-09-12 11:18:10 來源:腳本之家 閱讀:189 作者:deniro 欄目:web開發

Vue.js 組件提供了一個 functional  開關,設置為 true 后,就可以讓組件變為無狀態、無實例的函數化組件。因為只是函數,所以渲染的開銷相對來說,較小。

函數化的組件中的 Render 函數,提供了第二個參數 context 作為上下文,data、props、slots、children 以及 parent 都可以通過 context 來訪問。

1 示例

這里,我們用  functional 函數化組件來實現一個智能組件。

html:

<div id="app">
  <smart-component :data="data"></smart-component>
  <button @click="change('img')">圖片組件</button>
  <button @click="change('video')">視頻組件</button>
  <button @click="change('text')">文本組件</button>
</div>

js:

//圖片組件設置
var imgOptions = {
  props: ['data'],
  render: function (createElement) {
    return createElement('div', [
      createElement('p', '圖片組件'),
      createElement('img', {
        attrs: {
          src: this.data.url,
          height: 300,
          weight: 400

        }
      })
    ]);
  }
};

//視頻組件設置
var videoOptions = {
  props: ['data'],
  render: function (createElement) {
    return createElement('div', [
      createElement('p', '視頻組件'),
      createElement('video', {
        attrs: {
          src: this.data.url,
          controls: 'controls',
          autoplay: 'autoplay'
        }
      })
    ]);
  }
};

//文本組件設置
var textOptions = {
  props: ['data'],
  render: function (createElement) {
    return createElement('div', [
      createElement('p', '文本組件'),
      createElement('p', this.data.content)
    ]);
  }
};

Vue.component('smart-component', {
  //設置為函數化組件
  functional: true,
  render: function (createElement, context) {
    function get() {
      var data = context.props.data;

      console.log("smart-component/type:" + data.type);
      //判斷是哪一種類型的組件
      switch (data.type) {
        case 'img':
          return imgOptions;
        case 'video':
          return videoOptions;
        case 'text':
          return textOptions;
        default:
          console.log("data 類型不合法:" + data.type);
      }
    }

    return createElement(
      get(),
      {
        props: {
          data: context.props.data
        }
      },
      context.children
    )
  },
  props: {
    data: {
      type: Object,
      required: true
    }
  }
})

var app = new Vue({
  el: '#app',
  data: {
    data: {}
  },
  methods: {
    change: function (type) {
      console.log("輸入類型:" + type);
      switch (type) {
        case 'img':
          this.data = {
            type: 'img',
            url: 'http://pic-bucket.ws.126.net/photo/0001/2019-02-07/E7D8PON900AO0001NOS.jpg'
          }
          break;
        case 'video':
          this.data = {
            type: 'video',
            url: 'http://wxapp.cp31.ott.cibntv.net/6773887A7F94A71DF718E212C/03002002005B836E73A0C5708529E09C1952A1-1FCF-4289-875D-AEE23D77530D.mp4?ccode=0517&duration=393&expire=18000&psid=bbd36054f9dd2b21efc4121e320f05a0&ups_client_netip=65600b48&ups_ts=1549519607&ups_userid=21780671&utid=eWrCEmi2cFsCAWoLI41wnWhW&vid=XMzc5OTM0OTAyMA&vkey=A1b479ba34ca90bcc61e3d6c3b2da5a8e&iv=1&sp='
          }
          break;
        case 'text':
          this.data = {
            type: 'text',
            content: '《流浪地球》中的科學:太陽何時吞并地球?科學家已經給出時間表'
          }
          break;
        default:
          console.log("data 類型不合法:" + type);
      }

    }
  },
  created: function () {
    //默認為圖片組件
    this.change('img');
  }

});

效果:

說說Vue.js中的functional函數化組件的使用

  • 首先定義了圖片組件設置對象、視頻組件設置對象以及文本組件設置對象,它們都以 data 作為入參。
  • 函數化組件 smart-component,也以  data 作為入參。內部根據 get() 函數來判斷需要渲染的組件類型。
  • 函數化組件 smart-component 的 render 函數,以 get() 作為第一個參數;以 smart-component 所傳入的 data,作為第二個參數:
return createElement(
  get(),
  {
    props: {
      data: context.props.data
    }
  },
  context.children
)


根實例 app 的 change 方法,根據輸入的類型,來切換不同的組件所需要的數據。

2 應用場景

函數化組件不常用,它應該應用于以下場景:

  • 需要通過編程實現在多種組件中選擇一種。
  • children、props 或者 data 在傳遞給子組件之前,處理它們。

本文示例代碼

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

济阳县| 渑池县| 饶平县| 无棣县| 吉水县| 江山市| 涡阳县| 小金县| 昌都县| 浦县| 水城县| 尼木县| 金寨县| 中山市| 于田县| 龙游县| 靖宇县| 伊宁市| 正安县| 河北区| 观塘区| 三亚市| 监利县| 大理市| 大足县| 临沭县| 株洲县| 临沂市| 射阳县| 琼海市| 泰安市| 乾安县| 搜索| 肃宁县| 汉沽区| 大安市| 平凉市| 四川省| 高碑店市| 安丘市| 陵川县|