🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
1. App.js ~~~ import React, { Component } from 'react'; class App extends Component { //动态显示时数据 构造器 constructor(props) { super(props); this.state = { msg: "hello react" } } // 固定格式返回一个html1 render() { return ( <div> hello world {/* 事件处理 .bind(this)将this指向指向实例化对象*/} <div onClick={this.handleClick.bind(this)}> {this.state.msg} </div> </div> ); } // 对应的事件函数 handleClick() { this.setState({ msg:"change" }) } } export default App; ~~~