摘要:
//组件加载的时候 constructor(props){ super(props) this.state = { msg:'张学友' } } //组件将要挂载 componentWillMount(){ } //数据渲染 render(){ } //组件挂载完成的时候 componentDidMo 阅读全文
摘要:
事件对象: import React,{Component} from 'react' class Index extends Component{ constructor(props){ super(props) this.state = { msg:'张学友' } } getMsg=(event 阅读全文