美文网首页React Native深度学习
React-native学习--基本结构

React-native学习--基本结构

作者: pythonboy | 来源:发表于2016-02-14 21:34 被阅读75次

    /*

    开启Strict Mode,这种模式下可以将错误处理提高。

    */

    'use strict'

    /*

    将react-native模块加载进来,并将它赋值给React变量

    这个命令相当于swfit中导入库或者链接库

    */

    var React = require('react-native');

    /*

    AppRegistry定义了App的入口,并提供了根组件

    */

    AppRegistry.registerComponent('weekdays',function(){

    return Weekdays

    });

    react程序的基本结构

    1,//Import some code we need,导入我们需要的库或代码

    var React = require('react-native');

    2,//Create a react component,创建React组件

    3,// Style the React component,给组件添加样式

    4,//Show the react component on the screen,在屏幕上展示组件

    相关文章

      网友评论

        本文标题:React-native学习--基本结构

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