淺談react 中的 this 指向

流氓流年流浪發表於2019-01-09

前言 最近在做一個專案的時候 關於class方法中 this 指向以及 外接prototype 的 this 指向 引發了我的思考!

image.png

ES6原生class

我們假設 A 為 react B 為 我們建立的類 class B extends React.component{}

   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

  • 經過列印我們發現 B 中的 this 指向的都是 B 這個類
  • 那麼問題來了,我們 都知道 react的 class 中需要繫結 this, 為什麼需要?繫結 this 有哪些方式,以及這些方式有什麼不同? note.youdao.com/noteshare?i…

react 高階 api => createElement

react.docschina.org/docs/react-…

jsx 語法

class Hello extends React.Component {
  render() {
    return <div>Hello {this.props.toWhat}</div>;
  }
}

ReactDOM.render(
  <Hello toWhat="World" />,
  document.getElementById('root')
);
複製程式碼

編譯成下面這段程式碼

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')
);
複製程式碼

看我們最初的那一段程式碼

 // 如果我們將 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 中 是可以正常渲染的

 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()

複製程式碼

內建箭頭函式與外接箭頭函式是有區別的

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 的方法)

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() 生成的新函式返回後,你想什麼時候調就什麼時候調

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();
複製程式碼

相關文章