-
单页app的挑战
查看全部 -
开始查看全部
-
reacrt生命周期函数:
componentWillMount
componentDidMount
componentWillUnmount
componentWillUpdate
shouldComponentUpdate
componentWillReceiveProps
查看全部 -
this.setState 相当于vue的 this.$set()
查看全部 -
类似vue的钩子函数:
getInitialState
componentDidMount
查看全部 -
组件显示可配置化:
查看全部 -
组件显示可配置化:
查看全部 -
把界面的样式设计模式与逻辑业务整合查看全部
-
componentWillUnmount: 通知组件将要被删除,释放内存文件句柄定时器;将组件从 dom 里拿掉
查看全部 -
getInitState: 放到construct里
getDefaultProps: 改写 static defaultProps=()
查看全部 -
生命周期函数
查看全部 -
12345
查看全部 -
toLocaleString:把数组转换为本地字符串。
查看全部 -
//写法不更新页组件
// this.setState={
// strikers: this.state.strikers + 100
// }
this.setState({
strikers: this.state.strikers + 100
})
查看全部 -
setState :与state 融合若没有的属性会添加,如重复则会替换掉
查看全部
举报