摘要: //组件加载的时候 constructor(props){ super(props) this.state = { msg:'张学友' } } //组件将要挂载 componentWillMount(){ } //数据渲染 render(){ } //组件挂载完成的时候 componentDidMo 阅读全文
posted @ 2020-03-23 15:14 FinnYY 阅读(797) 评论(0) 推荐(0) 编辑
摘要: 事件对象: import React,{Component} from 'react' class Index extends Component{ constructor(props){ super(props) this.state = { msg:'张学友' } } getMsg=(event 阅读全文
posted @ 2020-03-23 11:02 FinnYY 阅读(124) 评论(0) 推荐(0) 编辑