91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

this怎么在React組件中使用

發布時間:2021-01-20 16:03:55 來源:億速云 閱讀:183 作者:Leah 欄目:web開發

今天就跟大家聊聊有關this怎么在React組件中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

React組件的this是什么

通過編寫一個簡單組件,并渲染出來,分別打印出自定義函數和render中的this:

import React from 'react';

const STR = '被調用,this指向:';

class App extends React.Component{
  constructor(){
    super()
  }

  //測試函數
  handler() {
    console.log(`handler ${STR}`,this);
  }

  render(){

    console.log(`render ${STR}`,this);
    return(
      <div>
        <h2>hello World</h2>
        <label htmlFor = 'btn'>單擊打印函數handler中this的指向</label>
        <input id = "btn" type="button" value = '單擊' onClick = {this.handler}/>
      </div>    
    )
  }
}
export default App

結果如圖:

this怎么在React組件中使用

可以看到,render函數中的this指向了組件實例,而handler()函數中的this則為undefined,這是為何?

JavaScript函數中的this

我們都知道JavaScript函數中的this不是在函數聲明的時候定義的,而是在函數調用(即運行)的時候定義的

var student = {
  func: function() {
    console.log(this);
  };
};

student.func();
var studentFunc = student.func;
studentFunc();

這段代碼運行,可以看到student.func()打印了student對象,因為此時this指向student對象;而studentFunc()打印了window,因為此時由window調用的,this指向window。

這段代碼形象的驗證了,JavaScript函數中的this不是在函數聲明的時候,而是在函數運行的時候定義的;

同樣,React組件也遵循JavaScript的這種特性,所以組件方法的‘調用者'不同會導致this的不同(這里的 “調用者” 指的是函數執行時的當前對象)

“調用者”不同導致this不同

測試:分別在組件自帶的生命周期函數以及自定義函數中打印this,并在render()方法中分別使用this.handler(),window.handler(),onCilck={this.handler}這三種方法調用handler():

/App.jsx
 //測試函數
  handler() {
    console.log(`handler ${STR}`,this);
  }

  render(){
    console.log(`render ${STR}`,this);

    this.handler();
    window.handler = this.handler;
    window.handler();

    return(

      <div>
        <h2>hello World</h2>
        <label htmlFor = 'btn'>單擊打印函數handler中this的指向</label>
        <input id = "btn" type="button" value = '單擊' onClick = {this.handler}/>
      </div>    
    )
  }
}
export default App

this怎么在React組件中使用

可以看到:

  1. render中this -> 組件實例App對象;

  2. render中this.handler() -> 組件實例App對象 ;

  3. render中window.handler() -> window對象;

  4. onClick ={this.handler} -> undefined

繼續使用事件觸發組件的裝載、更新和卸載過程:

/index.js
import React from 'react'
import {render,unmountComponentAtNode} from 'react-dom'

import App from './App.jsx'


const root=document.getElementById('root')

console.log("首次掛載");
let instance = render(<App />,root);

window.renderComponent = () => {
  console.log("掛載");
  instance = render(<App />,root);
}

window.setState = () => {
  console.log("更新");
  instance.setState({foo: 'bar'});
}


window.unmountComponentAtNode = () => {
  console.log('卸載');
  unmountComponentAtNode(root);
}

使用三個按鈕觸發組件的裝載、更新和卸載過程:

/index.html
<!DOCTYPE html>
<html>
<head>
  <title>react-this</title>
</head>
<body>
  <button onclick="window.renderComponent()">掛載</button>
  <button onclick="window.setState()">更新</button>
  <button onclick="window.unmountComponentAtNode()">卸載</button>
  <div id="root">
    <!-- app -->
  </div>
</body>
</html>

運行程序,依次單擊“掛載”,綁定onClick={this.handler}“單擊”按鈕,“更新”和“卸載”按鈕結果如下:

this怎么在React組件中使用

1. render()以及componentDIdMount()、componentDIdUpdate()等其他生命周期函數中的this都是組件實例;

2. this.handler()的調用者,為render()中的this,所以打印組件實例;

3. window.handler()的“調用者”,為window,所以打印window;

4. onClick={this.handler}的“調用者”為事件綁定,來源多樣,這里打印undefined。

-面對如此混亂的場景,如果我們想在onClick中調用自定義的組件方法,并在該方法中獲取組將實例,我們就得進行轉換上下文即綁定上下文:

自動綁定和手動綁定

  1. React.createClass有一個內置的魔法,可以自動綁定所用的方法,使得其this指向組件的實例化對象,但是其他JavaScript類并沒有這種特性;

  2. 所以React團隊決定不再React組件類中實現自動綁定,把上下文轉換的自由權交給開發者;

  3. 所以我們通常在構造函數中綁定方法的this指向:

import React from 'react';
const STR = '被調用,this指向:';
class App extends React.Component{
  constructor(){
    super();
    this.handler = this.handler.bind(this);
  }
//測試函數
  handler() {
    console.log(`handler ${STR}`,this);
  }

  render(){
    console.log(`render ${STR}`,this);
    this.handler();
    window.handler = this.handler;
    window.handler();

    return(
      <div>
        <h2>hello World</h2>
        <label htmlFor = 'btn'>單擊打印函數handler中this的指向</label>
        <input id = "btn" type="button" value = '單擊' onClick = {this.handler}/>
      </div>    
    )
  }
}
export default App

將this.handler()綁定為組件實例后,this.handler()中的this就指向組將實例,即onClick={this.handler}打印出來的為組件實例;

看完上述內容,你們對this怎么在React組件中使用有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

上犹县| 孟村| 洛川县| 孟州市| 延津县| 平江县| 德州市| 保德县| 什邡市| 长治县| 博乐市| 海丰县| 双流县| 三台县| 恩平市| 克东县| 嘉鱼县| 梁平县| 涟源市| 隆子县| 卢龙县| 乌拉特中旗| 黔江区| 武山县| 富宁县| 新泰市| 辽宁省| 甘肃省| 华池县| 宝丰县| 庄河市| 陆河县| 象山县| 台南县| 南召县| 洪洞县| 江口县| 崇明县| 稻城县| 贡山| 凌海市|