React 前端框架4

六、React 中的事件处理

(一)绑定事件的方式

在 React 中,事件绑定和传统的 HTML 中的事件绑定有一些不同,它采用了驼峰命名法来命名事件名称,并且事件绑定的属性值是一个函数。例如,在 HTML 中绑定点击事件可能是 <button onclick="handleClick()">点击我</button>,而在 React 中则是 <button onClick={() => handleClick()}>点击我</button>(这里假设 handleClick 是在组件内部定义的一个函数),或者更常见的是将函数先绑定到组件实例上(主要针对类组件),比如:

import React, { Component } from 'react';

class ButtonComponent extends Component {
  constructor(props) {
    super(props);
    this.handleClick = this.handleClick.bind(this);
  }

  handleClick() {
    console.log('按钮被点击了');
  }

  render() {
    return (
      <button onClick={this.handleClick}>点击我</button>
    );
  }
}

export default ButtonComponent;

在类组件中,因为类的方法默认情况下 this 的指向问题,需要在 constructor 中通过 bind 方法将事件处理函数的 this 绑定到组件实例上,这样才能在事件处理函数中正确地访问到组件的属性和 state 等数据。

(二)事件参数传递

有时候我们需要在事件处理函数中传递额外的参数,常见的做法有两种:

  • 使用箭头函数包裹

    import React, { Component } from 'react';

    class ParameterPassingComponent extends Component {
    handleClick(name) {
    console.log(你好, ${name}!);
    }

    render() {
      return (
        <div>
          <button onClick={() => this.handleClick('小明')}>向小明打招呼</button>
          <button onClick={() => this.handleClick('小红')}>向小红打招呼</button>
        </div>
      );
    }
    

    }

    export default ParameterPassingComponent;

这里通过箭头函数包裹的方式,在调用 this.handleClick 时传递了不同的参数进去。

import React, { Component } from 'react';

class ParameterPassingComponent extends Component {
  handleClick(name) {
    console.log(`你好, ${name}!`);
  }

  render() {
    return (
      <div>
        <button onClick={this.handleClick.bind(this, '小明')}>向小明打招呼</button>
        <button onClick={this.handleClick.bind(this, '小红')}>向小红打招呼</button>
      </div>
    );
  }
}

export default ParameterPassingComponent;

使用 bind 方法除了能绑定 this 之外,还可以同时传递其他参数,达到类似的效果。

相关推荐
染指悲剧1 小时前
vue实现虚拟列表滚动
前端·javascript·vue.js
浩浩测试一下2 小时前
Web渗透测试之XSS跨站脚本之JS输出 以及 什么是闭合标签 一篇文章给你说明白
前端·javascript·安全·web安全·网络安全·html·系统安全
前端搬运工X3 小时前
Object.keys 的原生 JS 类型之困
javascript·typescript
肖老师xy4 小时前
h5使用better scroll实现左右列表联动
前端·javascript·html
一路向北North4 小时前
关于easyui select多选下拉框重置后多余显示了逗号
前端·javascript·easyui
一水鉴天4 小时前
为AI聊天工具添加一个知识系统 之27 支持边缘计算设备的资源存储库及管理器
数据库·人工智能·前端框架
Libby博仙4 小时前
.net core 为什么使用 null!
javascript·c#·asp.net·.netcore
一水鉴天4 小时前
为AI聊天工具添加一个知识系统 之26 资源存储库和资源管理器
前端·javascript·easyui
万物得其道者成4 小时前
在高德地图上加载3DTilesLayer图层模型/天地瓦片
前端·javascript·3d
你挚爱的强哥5 小时前
基于element UI el-dropdown打造表格操作列的“更多⌵”上下文关联菜单
javascript·vue.js·elementui