-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebView.js
73 lines (68 loc) · 1.73 KB
/
WebView.js
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
WebView,
Dimensions,
} from 'react-native';
var width = Dimensions.get('window').width;
var height = Dimensions.get('window').height;
export default class Web_View extends Component {
//构造
constructor(props)
{
super(props);
this.state = {
url: 'http://vpn.jingtaomart.com/chinamap/index.html'
};
}
render() {
return (
<View style={styles.flex}>
<WebView
automaticallyAdjustContentInsets={false}
source={{uri: this.state.url}}
style={{width: width, height : height}}
startInLoadingState ={true}
/*
返回数据参数及格式如下:
加载前和加载后 参数loading发生变化。
---------------------------------------------------------------------
{
canGoBack: false
canGoForward: false
loading: true
target: 57
title: ""
url: "http://vpn.jingtaomart.com/chinamap/index.html"
}
--------------------------------------------------------------------
{
canGoBack: false
canGoForward: false
loading: false
target: 57
title: "境淘土特产全国网"
url: "http://vpn.jingtaomart.com/chinamap/index.html"
}
---------------------------------------------------------------------
*/
onNavigationStateChange={(navState) => {
console.log(navState);
}}
onMessage={(e)=>{
console.log(JSON.parse(e.nativeEvent.data));
}}
>
</WebView>
</View>
);
}
}
const styles = StyleSheet.create({
flex : {
flex : 1,
},
});