将WebView约束到一组URL(RN Android)

时间:2016-06-28 11:24:34

标签: android webview react-native

我正在使用React Native开发一个应用程序,我希望有一个WebView,它只能访问某组域,并取消对任何其他域的任何请求。在iOS中,可以使用onShouldStartLoadWithRequest事件完成。例如:

onShouldStartLoadWithRequest(event){
   if(event.url.startsWith("http://alloweddomain.net")) return true;
   return false;
}

然而,相同的事件不适用于Android(this pull request遗憾地被拒绝),我想知道是否有任何方法可以使用React API或第三方软件包实现此行为

0 个答案:

没有答案