W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
<custom-ul>
<custom-li>item 1</custom-li>
<custom-li>item 2</custom-li>
</custom-ul>
這個例子中, custom-ul
和 custom-li
都是自定義組件,它們有相互間的關(guān)系,相互間的通信往往比較復(fù)雜。此時在組件定義時加入 relations 定義段,可以解決這樣的問題。示例:
// path/to/custom-ul.js
Component({
relations: {
'./custom-li': {
type: 'child', // 關(guān)聯(lián)的目標(biāo)節(jié)點應(yīng)為子節(jié)點
linked(target) {
// 每次有custom-li被插入時執(zhí)行,target是該節(jié)點實例對象,觸發(fā)在該節(jié)點attached生命周期之后
},
linkChanged(target) {
// 每次有custom-li被移動后執(zhí)行,target是該節(jié)點實例對象,觸發(fā)在該節(jié)點moved生命周期之后
},
unlinked(target) {
// 每次有custom-li被移除時執(zhí)行,target是該節(jié)點實例對象,觸發(fā)在該節(jié)點detached生命周期之后
}
}
},
methods: {
_getAllLi() {
// 使用getRelationNodes可以獲得nodes數(shù)組,包含所有已關(guān)聯(lián)的custom-li,且是有序的
const nodes = this.getRelationNodes('path/to/custom-li')
}
},
ready() {
this._getAllLi()
}
})
// path/to/custom-li.js
Component({
relations: {
'./custom-ul': {
type: 'parent', // 關(guān)聯(lián)的目標(biāo)節(jié)點應(yīng)為父節(jié)點
linked(target) {
// 每次被插入到custom-ul時執(zhí)行,target是custom-ul節(jié)點實例對象,觸發(fā)在attached生命周期之后
},
linkChanged(target) {
// 每次被移動后執(zhí)行,target是custom-ul節(jié)點實例對象,觸發(fā)在moved生命周期之后
},
unlinked(target) {
// 每次被移除時執(zhí)行,target是custom-ul節(jié)點實例對象,觸發(fā)在detached生命周期之后
}
}
}
})
注意:必須在兩個組件定義中都加入relations定義,否則不會生效。
有時,需要關(guān)聯(lián)的是一類組件,如:
<custom-form>
<view>
input
<custom-input></custom-input>
</view>
<custom-submit>submit</custom-submit>
</custom-form>
custom-form
組件想要關(guān)聯(lián) custom-input
和 custom-submit
兩個組件。此時,如果這兩個組件都有同一個behavior:
// path/to/custom-form-controls.js
module.exports = Behavior({
// ...
})
// path/to/custom-submit.js
const customFormControls = require('./custom-form-controls')
Component({
behaviors: [customFormControls],
relations: {
'./custom-form': {
type: 'ancestor', // 關(guān)聯(lián)的目標(biāo)節(jié)點應(yīng)為祖先節(jié)點
}
}
})
則在 relations 關(guān)系定義中,可使用這個behavior來代替組件路徑作為關(guān)聯(lián)的目標(biāo)節(jié)點:
// path/to/custom-form.js
const customFormControls = require('./custom-form-controls')
Component({
relations: {
customFormControls: {
type: 'descendant', // 關(guān)聯(lián)的目標(biāo)節(jié)點應(yīng)為子孫節(jié)點
target: customFormControls
}
}
})
relations
定義段包含目標(biāo)組件路徑及其對應(yīng)選項,可包含的選項見下表。
選項 | 類型 | 是否必填 | 描述 |
---|---|---|---|
type | String | 是 | 目標(biāo)組件的相對關(guān)系,可選的值為 parent 、 child 、 ancestor 、 descendant |
linked | Function | 否 | 關(guān)系生命周期函數(shù),當(dāng)關(guān)系被建立在頁面節(jié)點樹中時觸發(fā),觸發(fā)時機在組件attached生命周期之后 |
linkChanged | Function | 否 | 關(guān)系生命周期函數(shù),當(dāng)關(guān)系在頁面節(jié)點樹中發(fā)生改變時觸發(fā),觸發(fā)時機在組件moved生命周期之后 |
unlinked | Function | 否 | 關(guān)系生命周期函數(shù),當(dāng)關(guān)系脫離頁面節(jié)點樹時觸發(fā),觸發(fā)時機在組件detached生命周期之后 |
target | String | 否 | 如果這一項被設(shè)置,則它表示關(guān)聯(lián)的目標(biāo)節(jié)點所應(yīng)具有的behavior,所有擁有這一behavior的組件節(jié)點都會被關(guān)聯(lián) |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: