组件web-view加载成功,加载失败事件都没有触发 ?
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加载成功,加载失败事件都没有触发 ?之前都有触发的。是微信改规则了吗?