认识 RN

2018-02-06  本文已影响0人  J_下一站

js组件结构==>以下四块:

1.引入组件; import a from './a';

2.定义组件;class a extends Component {}

3.自定义样式;const styles = StyleSheet.create({})

4.输出组件;export default a;

tip:

自定义组件中,注意两块:1)constructor中的state和props     2)render 。 组件入口。(类似于找Java和c中的main函数)

class   a extends Component {

       constructor(props) {

                 super(props);

                 this.state = {  }

        }

        render (){

                return();

        }

}

上一篇下一篇

猜你喜欢

热点阅读