我有一个名为的组件RenderHtml
,它呈现我的 html:
<RenderHTMLSource
contentWidth={width * 0.8}
source={{html: props.html}}
/>
还有一个img
看起来像这样的自定义渲染器:
<Touchable
onPress={() => props.???}
>
<Image src={props.tnode.attributes.src} />
</Touchable>
我想RenderHtml
从 Touchable 的 onPress 方法中调用一个函数。有没有办法将回调传递给自定义渲染器?