在android 或者flutter 中使用webview的时候,通常都是能获取到页面加载前和加载后,通过此事件来做一些拦截控制
伪代码
var currentWebview = this.$scope.$getAppWebview();
let wv = currentWebview.children()[0]
wv.addEventListener('loaded',function() {
console.log(wv.getURL()) //获取url
console.log(wv.getTitle()) //获取标题
}, false);
其它事件参照此文档
http://www.html5plus.org/doc/zh_cn/webview.html#plus.webview.WebviewEvent