广告
返回顶部
首页 > 资讯 > 前端开发 > JavaScript >react实现数据监听方式
  • 648
分享到

react实现数据监听方式

react数据监听react监听react监听数据 2022-11-13 14:11:09 648人浏览 泡泡鱼
摘要

目录React 数据监听react事件监听三种写法方式一方式二方式三react 数据监听 监听组件传递的值:  componentWillReceiveProps(newProps)

react 数据监听

监听组件传递的值:

 componentWillReceiveProps(newProps)
 {
     参数为给组件传递的参数
 }

 监听组件内部状态的变化:

componentDidUpdate(prevProps,prevState){
    参数分别为改变之前的数据状态对象
    if(prevState.属性名!=this.state.属性名)
    {
        ...
    }
}

react事件监听三种写法

方式一

在constructor中使用bind绑定,改变this的指向

import React, { Component } from 'react';
 
export default class Group extends Component {
  constructor(props) {
    super(props);
    this.state = {
      show: true,
      title: '大西瓜'
    };
    // 写法一:事件绑定改变this指向
    this.showFunc = this.showFunc.bind(this);
  }
  // 调用该方法
  showFunc() {
    this.setState({
      show: false
    });
  }
  render() {
    let result = this.state.show ? this.state.title : null;
    return (
      <div>
        <button onClick={this.showFunc}>触发</button>
        {result}
      </div>
    );
  }
}

方式二

通过箭头函数改变this指向

import React, { Component } from 'react';
 
export default class Group extends Component {
  constructor(props) {
    super(props);
    this.state = {
      show: true,
      title: '大西瓜'
    };
  }
  // 第二种,通过箭头函数改变this指向
  showFunc = () => {
    this.setState({
      show: false
    });
  };
  render() {
    let result = this.state.show ? this.state.title : null;
    return (
      <div>
        <button onClick={this.showFunc}>触发</button>
        {result}
      </div>
    );
  }
}

方式三

直接使用箭头函数改变this的指向

import React, { Component } from 'react';
 
export default class Group extends Component {
  constructor(props) {
    super(props);
    this.state = {
      show: true,
      title: '大西瓜'
    };
  }
  // 调用该方法
  showFunc() {
    this.setState({
      show: false
    });
  }
  render() {
    let result = this.state.show ? this.state.title : null;
    return (
      <div>
        <button onClick={() => this.showFunc()}>触发</button>
        {result}
      </div>
    );
  }
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

--结束END--

本文标题: react实现数据监听方式

本文链接: https://www.lsjlt.com/news/172116.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作