收藏
回答

web-view加载协议为http的h5页面白屏,会触发binderror事件吗?

API组件名称:web-view

基础库版本号:2.28.1

问题:webview加载页面白屏后无法触发binderror事件

代码:

const handleLoad = (e: any) => {

alert(888)

console.log(e, 'webview load')

}


const handleError = (e: any) => {

console.log(e, 'webview error')

alert(999)

}

console.log(`${BASE_URL}${queryStr}`, 99999)

return (

<View>

<web-view src={`${BASE_URL}${queryStr}`} binderror={handleError} bindload={handleLoad} />

</View>

)



回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容