组件: - 组件在react中非常重要 - 所谓组件,其实在react中就是‘类’的概念 类的定义形式 ES6 class ES5 函数 注意: 组件名字,首字母需要大写 组件定义两种方式: 1. 函数 2. class类 函数: 定义: function Title(){ return xxxx } const Title = ()=>

标题3

; 调用: <Title> 类定义方式: class Title extends React.Component{ render(){ return

标题3

} } 函数定义组件和类定义区别: 生命周期 状态(state) this指向 函数: 无 无 乱 类: 有 有 靠谱 子组件里面内容: this.props.children 组件的内容