Fork me on GitHub

跨平台的Webview支持onShouldStartLoadWithRequest

众所周知,React-Native原生的Webview的属性onShouldStartLoadWithRequest仅支持IOS平台,但是往往在开发中两端都需要进行URl的拦截,进行对应的业务需要。
webview.png
通过不断学习,在https://github.com/react-native-community/react-native-webview 的基础上,整理出来一个方案,并且发布到了npm上,小伙伴们有需要的可以参考一下。https://github.com/wayne214/react-native-webview-crossplatform, 欢迎star,fork.

使用方式如下:
1.添加依赖包

yarn add react-native-webview-crossplatform
react-native link react-native-webview-crossplatform

2.在需要的业务页面导入

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { WebView } from 'react-native-webview-crossplatform'
export default class webview extends Component<Props> {
constructor(props){
super(props);
}


render() {
return (
<View style={styles.container}>
<WebView
source={{ uri: 'https://infinite.red/react-native' }}
style={{ marginTop: 20 }}
onLoadProgress={e=>console.log(e.nativeEvent.progress)}
onShouldStartLoadWithRequest={(e)=> {
console.log('拦截', e)
return true
}}
renderError={()=> {
return <View>
<Text>我是错误页面</Text>
</View>
}}
/>
</View>
);
}
}
-------------本文结束感谢您的阅读-------------
坚持原创技术分享,您的支持将鼓励我继续创作!