使用webView的时候,出现Error loading page Domain:WebKitErrorDomain Error Code:101 Description: The URL can't be shown

onShouldStartLoadWithRequest = (e) => {
// Implement any custom loading logic here, don't forget to return!
// 解决WebKitErrorDomain code:101的警告
// http://leonhwa.com/blog/0014905236320002ebb3db97fe64fb3bb6f047eafb1c5de000
var scheme = e.url.split('://')[0]
if (scheme === 'http' || scheme === 'https') {
return true
}
return false
};

posted @ 2019-03-21 15:17  年少的你如此美丽  阅读(2649)  评论(0)    收藏  举报