美文网首页
2018-06-01 react-native webview

2018-06-01 react-native webview

作者: duansiyu | 来源:发表于2018-06-01 23:28 被阅读0次

<WebView    style={{width: width, height:this.state.height}}

ref="webview"

    javaScriptEnabled={true}

domStorageEnabled={true}

showsHorizontalScrollIndicator={false}

showsVerticalScrollIndicator={false}

decelerationRate="normal"

source={{html:`${this.state.detail}window.onload=function(){window.location.hash = 1;document.title = document.body.clientHeight;}`}}

scalesPageToFit={false}

onNavigationStateChange={(title)=>{

if(title.title !=undefined) {

this.setState({

height:(parseInt(title.title)+20)

})

}

}}

/>

相关文章

网友评论

      本文标题:2018-06-01 react-native webview

      本文链接:https://www.haomeiwen.com/subject/pbdlsftx.html