這篇文章主要介紹了Vue中render函數的使用方法,現在分享給大家,也給大家做個參考。
render函數
vue透過 template 來建立你的 HTML。但是,在特殊情況下,這種寫死的模式無法滿足需求,必須需要js的程式設計能力。此時,需要用render來建立HTML。
什麼情況下適合使用render函數
在一次封裝一套通用按鈕元件的工作中,按鈕有四個樣式(default success error )。首先,你可能會想到如下實作
<p v-if="type === 'success'">success</p> <p v-else-if="type === 'error'">error</p> <p v-else-if="type === 'warm'">warm</p> <p v-else>default</p>
這樣寫在按鈕樣式少的時候完全沒有問題,但是試想,如果需要的按鈕樣式有十多個,按鈕內的文字根據實際情況而定(如success按鈕內的文字可能是OK、GOOD等等)。那麼template寫死的方式就顯得很無力了。遇上類似這樣的情況,使用render函數可以說最優選擇了。
根據實際情況改寫按鈕元件
首先render函數產生的內容相當於template的內容,故使用render函數時,在.vue檔案中需要先把template標籤去掉。只保留邏輯層。
export default { render(h) { return h('p',{ 'class': { btn: true, success: this.type === 'success', error: this.type === 'error', warm: this.type === 'warm', default: this.type === 'default' }, domProps: { innerHTML: this.$slots.default[0].text }, on: { click: this.clickHandle } }) }, methods: { clickHandle() { // dosomething } }, props: { type: { type: String, default: 'default' }, text: { type: String, default: 'default' } } };
根據元件化思維,能抽像出來的東西絕不寫死在邏輯上。這裡的clickHandle函數可以根據按鈕的type型別觸發不同的邏輯,就不多敘述了。
然後在父元件呼叫
<btn v-for="(btn, index) in testData" :type="btn.type" :text="btn.text" :key="index">{{btn.text}} </btn>
使用jsx
是的,要記住每個參數的類型同用法,按序傳參實在是太麻煩了。那其實可以用jsx來優化這個繁瑣的流程。
return ( <p class={{ btn: true, success: this.type === 'success', error: this.type === 'error', warm: this.type === 'warm', default: this.type === 'default' }} onClick={this.clickHandle}> {this.$slots.default[0].text} </p> )
範例二:
在遇到寫類似的元件的時候需要寫很多很長的程式碼,出於簡潔(懶惰使人進步)的角度來說,我們應該找到更合適的方法來實現該效果。
<body> <p id="app"> <mycomment :level="2"> 这是h2元素 </mycomment> </p> </body> <script type="text/x-template" id="is"> <p> <h1 v-if="level === 1"> <slot></slot> </h1> <h2 v-if="level === 2"> <slot></slot> </h2> <h3 v-if="level === 3"> <slot></slot> </h3> <h4 v-if="level === 4"> <slot></slot> </h4> <h5 v-if="level === 5"> <slot></slot> </h5> <h6 v-if="level === 6"> <slot></slot> </h6> </p> </script> <script> Vue.component('mycomment',{ template:'#is', props:{ level:{ type:Number, required:true, } } }) var app =new Vue({ el:'#app', }) </script>
這時候Render 函數就很好的解決了這個問題,先來簡單一點額例子,算是有基本的骨架了
<body> <p id="app"> <render-teample :level="4"> render function </render-teample> </p> </body> <script> Vue.component('render-teample',{ render:function(createElement){ return createElement( 'h'+this.level, this.$slots.default ) }, props: { level: { type: Number, required: true } } var app=new Vue({ el:"#app", }); </script>
然後進一步給你的元件加入你想要的樣式需要事件,變得有血有肉
<body> <p id="app"> <render-teample :level="4" > <p class="jah" slot="myslot">render function</p> </render-teample> </p> </body> <script> Vue.component('render-teample',{ render:function(createElement){ return createElement( 'h'+this.level, { 'class':{ show:true, hide:false, }, style:{ width:'200px', height:'400px', background:'red', }, attrs:{ name:'h-ex', id:'h-id' }, props:{ myprops:true, }, on: { click: function(event){ alert(this.num) } }, nativeOn:{ click:function(event) { alert(1111) } } }, [ this.$slots.myslot, createElement('p',{ domProps:{ innerHTML:'holle render' } }) ] ) }, props: { level: { type: Number, required: true } } }); var app=new Vue({ el:"#app", data:{ num:110 } }); </script>
注意:約束元件中VNodes 必須是唯一的。
直接把所有元素寫在一個createElement()下是很痛苦的,不利於維護。
所以通常會
var com1= createElement('p','item1');var com2= createElement('p','item1');
可以使用return createElement('p',[com1,com2])
這種情況是禁止的return createElement('p', [com1,com1])
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
#以上是Vue中render函數基本用法(詳細教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!