W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
組件通用事件與 Weex 通用事件相同,Rax 中需要以 on 開(kāi)頭駝峰方式命名
<View onClick={() => {}}>
...
</View>
頁(yè)面事件,需要通過(guò) setNativeProps API 手動(dòng)向 body 節(jié)點(diǎn)綁定
let bodyProps = {
onViewAppear: () => {},
onViewDisAppear: () => {}
};
let weexDocument = typeof __weex_document__ === 'object' ? __weex_document__ : typeof document === 'object' ? document : {};
if (weexDocument && weexDocument.body) {
setNativeProps(findDOMNode(weexDocument.body), bodyProps);
}
事件冒泡
let bodyProps = {
bubble: true,
};
let weexDocument = typeof __weex_document__ === 'object' ? __weex_document__ : typeof document === 'object' ? document : {};
if (weexDocument && weexDocument.body) {
setNativeProps(findDOMNode(weexDocument.body), bodyProps);
}
阻止冒泡
<View onClick={(event) => {
event.stopPropagation();
}}>
...
</View>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: