认识 RN

作者: J_下一站 | 来源:发表于2018-02-06 18:05 被阅读0次

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();

        }

}

相关文章

网友评论

      本文标题:认识 RN

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