从JSX中抽离事件处理程序
2021/11/8 11:39:55
本文主要是介绍从JSX中抽离事件处理程序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
将逻辑抽离到单独的方法中,保证JSX结构清晰
事件绑定this指向
1.箭头函数
利用箭头函数自身不绑定this的特点
//1. 导入react import React from 'react'; import ReactDOM from 'react-dom'; /* 从JSX中抽离事件处理程序 */ class App extends React.Component { state = { count: 0, test: 'a' } //事件处理程序 onIncrement() { console.log('事件处理程序中的this:', this) this.setState({ count: this.state.count + 1 }) } render () { return ( <div> <h1>计数器:{this.state.count}</h1> <button onClick={() => this.onIncrement()}>+1</button> {/* <button onClick={this.onIncrement}>+1</button> */} </div> ) } } //渲染组件 ReactDOM.render(<App />, document.getElementById('root'))
2.Function.prototype.bind()
//1. 导入react import React from 'react'; import ReactDOM from 'react-dom'; /* 从JSX中抽离事件处理程序 */ class App extends React.Component { constructor() { super() this.state = { count: 0 } this.onIncrement = this.onIncrement.bind(this) } //事件处理程序 onIncrement() { console.log('事件处理程序中的this:', this) this.setState({ count: this.state.count + 1 }) } render () { return ( <div> <h1>计数器:{this.state.count}</h1> <button onClick={this.onIncrement}>+1</button> </div> ) } } //渲染组件 ReactDOM.render(<App />, document.getElementById('root'))
3.class的实例方法
利用箭头函数形式的class实例方法
//1. 导入react import React from 'react'; import ReactDOM from 'react-dom'; /* 从JSX中抽离事件处理程序 */ class App extends React.Component { state = { count: 0 } //事件处理程序 onIncrement = () => { console.log('事件处理程序中的this:', this) this.setState({ count: this.state.count + 1 }) } render () { return ( <div> <h1>计数器:{this.state.count}</h1> <button onClick={this.onIncrement}>+1</button> </div> ) } } //渲染组件 ReactDOM.render(<App />, document.getElementById('root'))
这篇关于从JSX中抽离事件处理程序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-21Vue3教程:新手入门到实践应用
- 2024-12-21VueRouter4教程:从入门到实践
- 2024-12-20Vue3项目实战:从入门到上手
- 2024-12-20Vue3项目实战:新手入门教程
- 2024-12-20VueRouter4项目实战:新手入门教程
- 2024-12-20如何实现JDBC和jsp的关系?-icode9专业技术文章分享
- 2024-12-20Vue项目中实现TagsView标签栏导航的简单教程
- 2024-12-20Vue3入门教程:从零开始搭建你的第一个Vue3项目
- 2024-12-20从零开始学习vueRouter4:基础教程
- 2024-12-20Vuex4课程:新手入门到上手实战全攻略