前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >浅谈react 中的 this 指向

浅谈react 中的 this 指向

作者头像
念念不忘
发布2019-03-29 16:36:21
2K0
发布2019-03-29 16:36:21
举报
文章被收录于专栏:那些年我们学过的前端

前言 最近在做一个项目的时候 关于class方法中 this 指向以及 外置prototype 的 this 指向 引发了我的思考!

image.png

ES6原生class

我们假设 A 为 react B 为 我们创建的类 class B extends React.component{}

代码语言:javascript
复制
   class A {
    constructor() {
      this.x = 1;
    }
  }
  class B extends A {
    constructor() {
      super();
      this.x = 2;
      console.log('=====');
      console.log(this);    // B
      console.log(this.x);  // 2
      console.log(super.x); // undefined
      this.getme = this.getme.bind(this)
    }
    getName(){
      console.log('getName');
      console.log(this.x); // B
      let m = this.getme
      m()
    }
    getme(){
      console.log('getme');
      console.log(this.x); // B
    }
  }
  // 类转化为 es5的写法如下:
  function Es5B() {
    this.x = 2
  }
  Es5B.prototype.getName = function () {
    console.log(this);
    console.log('getName');
    console.log(this.x);
  }

  let b = new B();
  b.getName()

  let esb = new Es5B()
  esb.getName()

打印结果

image.png


react 高阶 api => createElement

https://react.docschina.org/docs/react-without-jsx.html

jsx 语法

代码语言:javascript
复制
class Hello extends React.Component {
  render() {
    return <div>Hello {this.props.toWhat}</div>;
  }
}

ReactDOM.render(
  <Hello toWhat="World" />,
  document.getElementById('root')
);

编译成下面这段代码

代码语言:javascript
复制
class Hello extends React.Component {
  render() {
    return React.createElement('div', null, `Hello ${this.props.toWhat}`);
  }
}

ReactDOM.render(
  React.createElement(Hello, {toWhat: 'World'}, null),
  document.getElementById('root')
);

看我们最初的那一段代码

代码语言:javascript
复制
 // 如果我们将 constructor 中的那个 bind 去掉之后
 // this.getme = this.getme.bind(this)
 // 执行到这里  this的指向就变化了
 let m = this.getme
 m() // 此时 this 变化为 undefined

将方法进行赋值之后,丢失了上下文,导致 this 变成 undefined , this之所以没有变为window 是因为类声明和类表达式的主体以 严格模式 执行,主要包括构造函数、静态方法和原型方法。Getter 和 setter 函数也在严格模式下执行。

ES6class 注意点

译文 为什么需要在 React 类组件中为事件处理程序绑定 this

未解之谜 原生 class 中 如果方法改为箭头函数这种形式就会报错 但是在 react 的 class 中 是可以正常渲染的

代码语言:javascript
复制
 class A {
    constructor() {
      this.x = 1;
    }
  }
  class B extends A {
    constructor() {
      super();
      this.x = 2;
    }
    getme=()=>{         // 这里会报错误
      console.log('getme');
      console.log(this.x); 
    }
    getName(){
      console.log('getName');
      console.log(this.x); 
      let m = this.getme
      m()
    }
  }
  
  let b = new B();
  b.getName()
内置箭头函数与外置箭头函数是有区别的
代码语言:javascript
复制
class B extends A {
  constructor() {
    super();
    this.x = 2
  }
  getName(){
    console.log('getName');
    console.log(this.x); // B
    let m = this.getme
    m()
  }
}

  B.prototype.getme =  ()=> {
    console.log('getme');
    console.log(this);
    /*
     箭头函数的 this 指向定义时所在对象 定义的环境在 window
     此时 this 指向 window
     如果是 react 创建的组件  此时 this指向和类之外的 this 是一致的 (但不是 window)
     如果prototype上挂载方法的时候 强烈建议大家用es5的方式就好!
    */
  }


let b = new B();
b.getName()
react 创建组件(需要绑定 this 和绑定 this 的方法)
代码语言:javascript
复制
export default class ExtendsCompTable extends React.Component {
  constructor (props) {
    super(props)
    this.state  = {
      name: 'react测试this指向'
    }
    this.handler = this.handler.bind(this)
  }

  handler () {
    message.info('点击了 bindthis),通过 bind 绑定 this')
  }
  renderDom () {
    let { name } = this.state
    return <Button>{name}</Button>
  }
  handlerArrow=()=> {
    console.log(this);
    message.info('点击了箭头函数绑定按钮,通过箭头函数绑定 this')
  }
  handleInnerArrow(){
    console.log(this);
    message.info('点击了箭头函数绑定,通过 bind 绑定 this')
  }
  handleBind(){
    console.log(this);
    message.info('点击了bind')
  }
  render () {
    return (
      <div>
        <h1>234567890</h1>
        <Button type='primary' onClick={this.handler}>bind(this)</Button>
        {/* 这种直接调用的方式不需要绑定 this  作为对象的方法被调用 this 指向对象*/}
        {this.renderDom()}   
        {/* 这种  handlerArrow=()=> {...}的形式  虽然可以用 但是不太建议*/}
        <Button type='primary' onClick={this.handlerArrow}>箭头函数绑定</Button>
        <Button type='primary' onClick={() => {
          this.handleInnerArrow()
        }}>点击触发方法</Button>
        <Button type='primary' onClick={this.handleBind.bind(this)}>bind</Button>
        <Table columns={columns} dataSource={data} />
      </div>
    )
  }
}

箭头函数 ()=>

  • 函数体内的this对象,就是定义时所在的对象,而不是使用时所在的对象,this是继承自父执行上下文!!中的this var x=11; var obj={ x:22, say:function(){ console.log(this.x) } } obj.say(); // 22 var x=11; var obj={ x:22, say:()=>{ console.log(this.x); } } obj.say();// 11 var a=11 function test1(){ this.a=22; let b=function(){ console.log(this.a); }; b(); } var x=new test1(); // 11 var x=11; var obj={ x:22, say:()=>{ console.log(this.x); } } obj.say(); // 22
  • 箭头函数中的 this 对象指向是固定的
  • 不可以当作构造函数,也就是说,不可以使用new命令,否则会抛出一个错误

bind

无论是 call() 也好, apply() 也好,都是立马就调用了对应的函数,而 bind() 不会, bind() 会生成一个新的函数,bind() 函数的参数跟 call() 一致,第一个参数也是绑定 this 的值,后面接受传递给函数的不定参数。 bind() 生成的新函数返回后,你想什么时候调就什么时候调

代码语言:javascript
复制
var m = {    
    "x" : 1 
}; 
function foo(y) { 
    alert(this.x + y); 
} 
foo.apply(m, [5]); 
foo.call(m, 5); 
var foo1 = foo.bind(m, 5); 
foo1();
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019.01.09 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • ES6原生class
  • react 高阶 api => createElement
    • 内置箭头函数与外置箭头函数是有区别的
      • react 创建组件(需要绑定 this 和绑定 this 的方法)
      • 箭头函数 ()=>
      • bind
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档