React 组件刷新

2025-05-08 07:57:29

1、检查react编写的页面在浏览器能否显示以下步骤不做详细讲解,不清楚的可看回我之前的经验。1.打包npm run build2.启动expressnpm run start3.浏览器输入地址127.0.0.1:9000

React 组件刷新

2、this.state小试牛刀1.编辑about.jsx2.添加以下代码:constructor(props){ super(props); this.state = {'name':'jack'};}render(){ return( <div>{this.state.name}</div> ) }

React 组件刷新
React 组件刷新

3、验证打包,浏览器显示页面

React 组件刷新

4、通过button点击刷新组件内容1.编辑about.j衡痕贤伎sx2.添加以下代码:changeText(){ this.setState(撑俯擂摔{'name':'kate'}); console.log(this.state.name);}render(){ return( <div> <div><Button type="primary" onClick={this.changeText.bind(this)}>点击更改</Button></div> <div>{this.state.name}</div> </div> ) }

React 组件刷新

5、验证1.打包,浏览器显示页面2.点击按钮,可以看到组件的内容已变化

React 组件刷新
React 组件刷新
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢