-
JSX
语法糖,返回ReactElement对象
查看全部 -
$ npm install create-react-app -g
查看全部 -
JSX 编译 React.createElement()
是语法糖
ReactElement对象
查看全部 -
ffffffffff
查看全部 -
fffffff
查看全部 -
// this.increaseLikes = this.increaseLike.bind(this) //state的值不能够修改,因为其为纯函数,唯一改变state值的 方式就是调用setState({count:++this.state.count})方法
查看全部 -
reactComponent必须像纯函数一样使用props(不能改变输入值)
查看全部 -
将bootstrap在index中引入,就能够让下面的NameCard能够使用,不用再次引用。
查看全部 -
React 开发思想
查看全部 -
React 生命周期图示
查看全部 -
组件像一个函数一样,接受特定的输入(props),产出特定的输出(React elements)
V = f(props)
查看全部 -
生命周期函数分为三大类:
1。初始化;componentDidMount()
2。更新;componentDidUpdate(currentProps,currentState),接收两个参数,第一个是当前props,第二个是当前state
3。卸载;componentWillUnmount()
查看全部 -
注意:函数式hocks 没有 render ( ) { } 部分,直接是 return ( )
?
查看全部 -
注意:函数式hocks 没有 render ( ) { } 部分,直接是 return ( ) 。
查看全部 -
props 要求按纯函数使用,即不能改变其值!
查看全部
举报