我想在react native中访问youtube的html代码。我需要使用injectionJavascript来呈现不带headerBar的youtube频道,所以我尝试了:
render(){
let jsCode = `
document.querySelector("header-bar").style.display = "none";
`;
return(
<WebView
style={{flex:1}}
javaScriptEnabled={true}
source={{uri: 'https://www.youtube.com/watch?v=c4Hi8OVEbuY&list=PLSlVQ0kIy6qzezeIJZW6SAl-cMiyvvbhN'}}
injectedJavascript={jsCode}
/>
)
}
但是它没有满足我的要求,我想我没有很好的方法来访问它。有人知道怎么做吗?
谢谢