index.wxml
<web-view bindload="webload" binderror="weberror" src="{{web}}"></web-view>
index.js
Page({ data:{ web:'https://xx.com'
}
,webload:function(){ console.log('webload') } ,weberror:function(){ console.log('weberror')
}
})
//组件web-view加载成功,加载失败事件都没有触发 ?之前都有触发的。是微信改规则了吗?
网友回复
是柿子啊:
没看明白,加载成功的时候触发binderror?
娇华:
这个页面是可以正常加载的,执行bindload有什么问题么