反应原生android上的Webview没有加载嵌入你的网址

时间:2016-03-21 11:27:31

标签: android reactjs android-webview react-native react-native-scrollview

import React, { View, WebView }  from 'react-native';

export const YoutubeScreen = React.createClass({
 render: function() {
  return (
    <View style={{flex: 1}}> 
      <WebView
      style={{flex:1}}
      javaScriptEnabled={true}
      source={{uri: 'https://www.youtube.com/embed/ZZ5LpwO-An4?rel=0&autoplay=0&showinfo=0&controls=0'}}
    />
   </View>
 );
} 
});

在iOS上运行正常。这是一个bug还是android的正常行为。

1 个答案:

答案 0 :(得分:0)