ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
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 {/* 事件处理 */} <div onClick={this.handleClick}> {this.state.msg} </div> </div> ); } // 对应的事件函数 handleClick() { alert(1) } } export default App; ~~~