在react应用中,我必须渲染一些html代码,其中包含文本,链接和一些图像/视频。
我正在使用react-native-render-html。
有一种方法可以让链接通过WebView打开,但没有图像?
<View style={styles.testo_a}>
<HTML html={this.state.text_}
onLinkPress= {(evt, href) => { <WebView source={{href}});/>}}
ignoredStyles={['width']}
staticContentMaxWidth={Dimensions.get('window').width-10}
imagesMaxWidth={Dimensions.get('window').width-10}/>
</View>