React 中的生命周期函數

来源:https://www.cnblogs.com/chenyingying0/archive/2020/04/14/12701724.html
-Advertisement-
Play Games

生命周期函數指的是組件在某一時刻會自動執行的函數 constructor可以看成一個類的普通生命周期函數,但不是react獨有的生命周期函數 render() 是數據發生變化時會自動執行的函數,因此屬於react的生命周期函數 mounting只在第一次渲染時會執行 import React,{Co ...


生命周期函數指的是組件在某一時刻會自動執行的函數

constructor可以看成一個類的普通生命周期函數,但不是react獨有的生命周期函數

render() 是數據發生變化時會自動執行的函數,因此屬於react的生命周期函數

 

 

mounting只在第一次渲染時會執行

import React,{Component} from 'react';

class Counter extends Component{

    constructor(props){
        super(props);
        console.log('constructor');
    }

    componentWillMount(){
        console.log('componentWillMount');
    }

    componentDidMount(){
        console.log('componentDidMount');
    }

    render(){
        console.log('render');
        return(
            <div>hello react</div>
        )
    }
}

export default Counter;

 

 

可以看到代碼有提示:componentWillMount has been renamed, and is not recommended for use.

這是因為React 16.9包含了一些新特性、bug修複以及新的棄用警告

unsafe 生命周期方法重命名為:

componentWillMount → UNSAFE_componentWillMount

componentWillReceiveProps → UNSAFE_componentWillReceiveProps

componentWillUpdate → UNSAFE_componentWillUpdate

在這種情況下,建議運行一個自動重命名它們的 codemod 腳本:

cd your_project
npx react-codemod rename-unsafe-lifecycles
(註意:這裡使用的是 npx,不是 npm ,npx 是 Node 6+ 預設提供的實用程式。)

運行 codemod 將會替換舊的生命周期,如 componentWillMount 將會替換為 UNSAFE_componentWillMount :

新命名的生命周期(例如:UNSAFE_componentWillMount)在 React 16.9 和 React 17.x 繼續使用,但是,新的 UNSAFE_ 首碼將幫助具有問題的組件在代碼 review 和 debugging 期間脫穎而出。(如果你不喜歡,你可以引入 嚴格模式(Strict Mode)來進一步阻止開發人員使用它 。)

當然按照上述操作完之後,我發現依然會報提示。於是目前能用的方法還是修改react版本

 

數據發生改變會觸發updation

import React,{Component} from 'react';

class Counter extends Component{

    constructor(props){
        super(props);
        this.updateNum=this.updateNum.bind(this);
        console.log('constructor');
        this.state={
            num:0
        }
    }

    updateNum(){
        this.setState({
            num:this.state.num+1
        })
    }

    componentWillMount(){
        console.log('componentWillMount');
    }

    componentDidMount(){
        console.log('componentDidMount');
    }

    shouldComponentUpdate(){
        console.log('shouldComponentUpdate');
        return true;
    }

    componentWillUpdate(){
        console.log('componentWillUpdate');
    }

    componentDidUpdate(){
        console.log('componentDidUpdate');
    }

    render(){
        console.log('render');
        return(
            <div onClick={this.updateNum}>hello react</div>
        )
    }
}

export default Counter;

 

 

當shouldComponentUpdate返回值設置為false時,不會再觸發updation

import React,{Component} from 'react';

class Counter extends Component{

    constructor(props){
        super(props);
        this.updateNum=this.updateNum.bind(this);
        console.log('constructor');
        this.state={
            num:0
        }
    }

    updateNum(){
        this.setState({
            num:this.state.num+1
        })
    }

    componentWillMount(){
        console.log('componentWillMount');
    }

    componentDidMount(){
        console.log('componentDidMount');
    }

    shouldComponentUpdate(){
        console.log('shouldComponentUpdate');
        return false;
    }

    componentWillUpdate(){
        console.log('componentWillUpdate');
    }

    componentDidUpdate(){
        console.log('componentDidUpdate');
    }

    render(){
        console.log('render');
        return(
            <div onClick={this.updateNum}>hello react</div>
        )
    }
}

export default Counter;

 

 

生命周期函數,也可以叫做鉤子函數

props相關生命周期函數是針對子組件的

新建number.js

import React,{Component} from 'react';

class Number extends Component{
    componentWillReceiveProps(){
        console.log('    child componentWillReceiveProps');
    }

    shouldComponentUpdate(){
        console.log('    child shouldComponentUpdate');
        return true;
    }

    componentWillUpdate(){
        console.log('    child componentWillUpdate');
    }

    componentDidUpdate(){
        console.log('    child componentDidUpdate');
    }

    render(){
        return(
            <div>{this.props.num}</div>
        )
    }
}

export default Number;

 

 

生命周期函數使用實例

給全局對象綁定事件

import React,{Component} from 'react';

class Counter extends Component{

    clickFn(){
        console.log('window click');
    }

    componentDidMount(){
        window.addEventListener("click",this.clickFn);
    }

    componentWillUnmount(){
        window.removeEventListener("click",this.clickFn);
    }

    render(){
        console.log('render');
        return(
            <div>
                <div>hello react</div>
            </div>
        )
    }
}

export default Counter;

 

 

接下來演示ajax請求

需要先安裝axios

npm install axios --save

如果是只在開發環境運行,則使用--save-dev

 

然後引入axios

import axios from 'axios';

 

import React,{Component} from 'react';
import axios from 'axios';

class Counter extends Component{

    componentDidMount(){
        axios.get("http://www.dell-lee.com/react/api/demo.json")
        .then(res=>{
            console.log(res.data);
        })
    }

    render(){
        console.log('render');
        return(
            <div>
                <div>hello react</div>
            </div>
        )
    }
}

export default Counter;

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 前言 文章首發於微信公眾號【碼猿技術專欄】。 在實際的開發中一定會碰到根據某個欄位進行排序後來顯示結果的需求,但是你真的理解order by在 Mysql 底層是如何執行的嗎? 假設你要查詢城市是蘇州的所有人名字,並且按照姓名進行排序返回前 1000 個人的姓名、年齡,這條 sql 語句應該如何寫? ...
  • 作為全球新冠疫情數據的實時統計的權威,約翰斯—霍普金斯大學的實時數據一直是大家實時關註的,也是各大媒體的主要數據來源。在今天早上的相當一段長的時間,霍普金斯大學的全球疫情分佈大屏中顯示,全球確診人數已經突破200萬。 有圖有真相 隨後相關媒體也進行了轉發,不過這個數據明顯波動太大,隨後該網站也修改了 ...
  • 一、啟動mongo shell 安裝好MongoDB後,直接在命令行終端執行下麵的命令: mongo 如下圖所示: 可選參數如下: 也可以簡寫為: 在mongo shell中使用外部編輯器,如:vi,只需設置環境變數: export EDITOR=vi 啟動mongo shel即可。下麵我們在mon ...
  • 老孟導讀:沒有接觸過音樂字幕方面知識的話,會對字幕的實現比較迷茫,什麼時候轉到下一句?看了這篇文章,你就會明白字幕so easy。 先來一張效果圖: 字幕格式 目前市面上有很多種字幕格式,比如srt, ssa, ass(文本形式)和idx+sub(圖形格式),但不管哪一種格式都會包含2個屬性:時間戳 ...
  • 用Moor做TODO app: * 基本使用: 依賴添加, 資料庫和表的建立, 對錶的基本操作. * 問題解決: 插入數據註意類型; 多個表的文件組織. * 常用功能: 外鍵和join, 資料庫升級, 條件查詢. ...
  • 引言 在我們學習編程之初,就學習過變數的賦值操作,同時也學習了將一個變數的值賦值給另外一個變數。對於交換兩個變數的值,很多童鞋都有解決方案。然鵝,對於面試官提出的不藉助第三變數來交換兩個變數的值,你能想到幾種解決方案呢? 如果你只知道一種方案,請你認真看下去... 如果你知道兩種方案,那麼你可以來了 ...
  • 前幾篇都是長篇大論,一次看完的確有些費盡,今天簡單些,分享一個開發中使用attr() 的技巧,可能大家都沒有這樣使用過。它配合ES6標準中模板字元串模塊使用。簡單看下模板字元串它的使用: // 傳統的 JavaScript 語言,輸出模板通常是這樣寫的(下麵使用了 jQuery 的方法)。 $('# ...
  • 首先是安裝 在index.js中引入樣式 跟著官網點組件 import React,{Component} from 'react'; import { Button } from 'antd'; class Counter extends Component{ render(){ console. ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...