我正在使用React Native开发一个应用程序,我希望有一个WebView,它只能访问某组域,并取消对任何其他域的任何请求。在iOS中,可以使用onShouldStartLoadWithRequest
事件完成。例如:
onShouldStartLoadWithRequest(event){
if(event.url.startsWith("http://alloweddomain.net")) return true;
return false;
}
然而,相同的事件不适用于Android(this pull request遗憾地被拒绝),我想知道是否有任何方法可以使用React API或第三方软件包实现此行为