react-UI(Ant Design为主)
material-ui(国外)
1) 官网: http://www.material-ui.com/#/
ant-design(国内蚂蚁金服)
1) PC官网: https://ant.design/index-cn
2) 移动官网: https://mobile.ant.design/index-cn
1) 官网: http://www.material-ui.com/#/
1) PC官网: https://ant.design/index-cn
2) 移动官网: https://mobile.ant.design/index-cn
1) 共同的数据放在父组件上, 特有的数据放在自己组件内部(state)
2) 通过 props 可以传递一般数据和函数数据, 只能一层一层传递
3) 一般数据–>父to子–>子组件读取数据
新的数据以props出现, 因此在componentWillReceiveProps中编写ajax请求代码
4) 函数数据–>子to父–>子组件调用函数
存在的问题:
- 孙子组件需要逐层传递
- cousin组件需要以父组件作为媒介
props属性只能通过外部接口赋值, state属性只能通过this.setState设置
几个重要实现点: