小编Anu*_*gia的帖子

React Native Webview未加载任何URL(React本机Web视图无法正常工作)

我正在尝试在我的应用程序中实现react本机webview组件,但是Web视图没有加载任何仅显示白页的url.

var React = require('react-native');
var{
 View,
 Text,
 StyleSheet,
 WebView
} = React;


module.exports = React.createClass({
 render: function(){
   return(
     <View style={styles.container}>
      <WebView source={{uri: 'https://m.facebook.com'}} style= {styles.webView}/>
     </View>
   );
 }
});

var styles = StyleSheet.create({
   container: {
     flex:1,
     backgroundColor:  '#ff00ff'
   },webView :{
     height: 320,
     width : 200
   }
});
Run Code Online (Sandbox Code Playgroud)

以下是输出的屏幕截图. 图片

react-native

33
推荐指数
9
解决办法
4万
查看次数

标签 统计

react-native ×1