React Native WebView关闭缓存

时间:2019-03-19 17:50:28   收藏:0   阅读:937

React Native WebView关闭缓存

网上搜索没有找到关闭React Native下webview控件的缓存的方法,经测试找到解决方案,记录如下


关键代码

<View style={styles.container}>
    <WebView source={{ uri: "http://somehost/somepath/file.html", method: ‘GET‘, headers: { ‘Cache-Control‘:‘no-cache‘} }} style={{ width: Dimensions.get(‘window‘).width, height: Dimensions.get(‘window‘).height }}></WebView>
</View>

原文:https://www.cnblogs.com/jkr666666/p/10559898.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!