在js中添加 loaded 事件监听,在跳转的时候得到路由信息进行逻辑操作
wv.addEventListener('loaded', function(){
console.log('New Window loaded!', wv.getURL());
const iNowUrl = wv.getURL();
vm.url1 = wv.getURL();
const matchStr = 'baidu';
// 匹配到关键字 baidu 路由
if (matchStr !== iNowUrl.match(matchStr)){
uni.navigateBack({
delta: 2
});
}
}, false);