我需要一些用户以前在webview中访问过的网站地址。
<WebView
//Enable Javascript support
javaScriptEnabled={true}
//For the Cache
domStorageEnabled={true}
//View to show while loading the webpage
renderLoading={this.ActivityIndicatorLoadingView}
//Want to show the view or not
startInLoadingState={true}
ref={component => this.webview = component}
source={{uri: this.state.addr}}
style={{flex:1}}
/>