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

溫馨提示×

溫馨提示×

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

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

react中context傳值和生命周期源碼分析

發布時間:2023-03-22 15:53:39 來源:億速云 閱讀:247 作者:iii 欄目:開發技術

本篇內容主要講解“react中context傳值和生命周期源碼分析”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“react中context傳值和生命周期源碼分析”吧!

假設:

項目中存在復雜組件樹:

react中context傳值和生命周期源碼分析

context傳值用途

數據是通過 props 屬性自上而下(由父及子)進行傳遞的,但這種做法對于某些類型的屬性而言是極其繁瑣的(例如:地區偏好,UI 主題),這些屬性是應用程序中許多組件都需要的。

Context傳值優點

Context 提供了一種在組件之間共享此類值的方式,而不必顯式地通過組件樹的逐層傳遞 props。

何時使用 Context

Context 設計目的是為了共享那些對于一個組件樹而言是“全局”的數據,例如當前認證的用戶、主題或首選語言。

ContextAPI

1.React.createContext API 
功能:
創建一個 Context 對象。
//代碼
//創建context對象的
import React from 'react'
let context=React.createContext();
export default context;
 
2.Context.Provider API
功能:
Provider 是context對象提供的內置組件  限定在某個作用域中使用context傳值。
限定作用域傳值。
 
3.Context.Consumer
context對象的內置組件
<MyContext.Consumer>
  {value => /* 基于 context 值進行渲染*/}
</MyContext.Consumer>
作用:監聽訂閱的context變更, 
這個函數接收當前的 context 值,返回一個 React 節點。

項目案例:主題色切換。

1.創建context.js文件
  創建context對象  用來做context傳值。
//創建context對象的
import React from 'react'
export default React.createContext();
2。使用context找到限定范圍使用內置組件Provider
 {/* 使用Provider 內置組件限定context范圍 */}
 {/* value 必填  context傳遞的值 */}
        <ThemeContext.Provider>
          <div className="Admin">
            <div className="LeftMenu">
              <LeftMenu></LeftMenu>
            </div>
            <div className="RightContent">
              <div className="RightContent-top">
                <TopHeader></TopHeader>
              </div>
              <div className="RightContent-bottom">
                <Dashborder></Dashborder>
              </div>
            </div>
</ThemeContext.Provider>

瀏覽器報錯:

react中context傳值和生命周期源碼分析

3.在使用context的組件中進行訂閱
左側菜單組件
import React, { Component } from "react";
console.log(Component);
//引入context對象
import ThemeContext from "../components/context";
class LeftMenu extends Component {
  constructor(props) {
    super(props);
    this.state = {};
  }
  render() {
    return (
      <>
        <div>左側菜單</div>
      </>
    );
  }
}
//class類組件存在contextType  綁定context對象
LeftMenu.contextType = ThemeContext;

組件中綁定context之后使用:

react中context傳值和生命周期源碼分析

意味著訂閱context組件的內部使用this.context獲取。

render() {
    //獲取context
    let theme = this.context;
    return (
      <>
        <div className={theme}>左側菜單</div>
      </>
    );
  }

固定主體修改為動態主體

修改了context文件代碼
//定義默認主體色
 
export const themes = {
  dark: {
    backgroundColor: "#000",
    color: "#fff",
  },
  light: {
    backgroundColor: "#fff",
    color: "#000",
  },
};
 
//創建context對象的
import React from "react";
export const ThemeContext = React.createContext();
app.js文件中獲取主題,動態切換主題。使用主題變量
constructor(props) {
    super(props);
    this.state = {
      //將固定的主體設置為state狀態
      themeType: "dark",//控制主體切換
      nowTheme: themes["dark"],//獲取當前默認主體
    };
  }
  render() {
    //解構獲取
    let { nowTheme } = this.state;
    return (
      <>
        {/* 使用Provider 內置組件限定context范圍 */}
        {/* value 必填  context傳遞的值 */}
        <ThemeContext.Provider value={nowTheme}>

訂閱組件中使用this.context獲取訂閱

react中context傳值和生命周期源碼分析

render() {
    //獲取context
    let { backgroundColor, color } = this.context;
    return (
      <>
      //直接綁定行內css
        <div style={{ backgroundColor: backgroundColor, color: color }}>
          左側菜單
        </div>
      </>
    );
  }

react中context傳值和生命周期源碼分析

用戶點擊其他組件修改主題的按鈕來變更主題

注意:不能直接使用this.context修改變量值
//可以在provider組件上 value中攜帶修改函數傳遞。在訂閱組件中獲取修改方法,執行反向傳遞值。
//修改主題變量方法
  changeTheme(type) {
    console.log("測試", type);
    this.setState({ themeType: type, nowTheme: themes[type] });
  }
  render() {
    //解構獲取
    let { nowTheme } = this.state;
    return (
      <>
        {/* 使用Provider 內置組件限定context范圍 */}
        {/* value 必填  context傳遞的值 */}
        <ThemeContext.Provider
          value={{ ...nowTheme, handler: this.changeTheme.bind(this) }}
        >
          <div className="Admin">
            <div className="LeftMenu">
              <LeftMenu></LeftMenu>
            </div>
            <div className="RightContent">
              <div className="RightContent-top">
                <TopHeader></TopHeader>
              </div>
              <div className="RightContent-bottom">
                <Dashborder></Dashborder>
              </div>
            </div>
          </div>
        </ThemeContext.Provider>
      </>
    );
 //在訂閱組件中直接使用
 //修改主題的方法
  change(themeType) {
    console.log(themeType);
    //獲取provider傳遞方法
    let { handler } = this.context;
    handler(themeType);
  }
  render() {
    let { themeButton } = this.state;
    return (
      <>
        <div>
          <span>主題色:</span>
          <div>
            {/* 控制左側菜單和上header背景色 */}
            {themeButton.map((item, index) => {
              return (
                <button key={index} onClick={this.change.bind(this, item.type)}>
                  {item.name}
                </button>
              );
            })}
          </div>
        </div>
      </>
    );

添加自定義顏色

 {/* 顏色選擇器 */}
          背景色:
          <input
            type="color"
            name="selectbgColor"
            value={selectbgColor}
            onChange={this.changeColor.bind(this)}
          />
          字體色:
          <input
            type="color"
            name="selectColor"
            value={selectColor}
            onChange={this.changeColor.bind(this)}
          />
          <button onClick={this.yesHandler.bind(this)}>確認</button>
   //代碼區域操作事件向父級傳遞參數
     //確認修改
  yesHandler() {
    let { myhandler } = this.context;
    let { selectbgColor, selectColor } = this.state;
    console.log(selectbgColor, selectColor);
    myhandler(selectbgColor, selectColor);
  }

添加監聽context變化

 {/*監聽context value值*/}
          <ThemeContext.Consumer>
            {(value) => {
              let { backgroundColor, color } = value;
              return (
                <>
                  <span>背景色:{backgroundColor}</span>
                  <span>文字色:{color}</span>
                </>
              );
            }}
          </ThemeContext.Consumer>

react中context傳值和生命周期源碼分析

類組件的生命周期

組件生命周期解釋:組件初始化到銷毀整個過程。

生命周期三類:

  • Mounting(掛載):已插入真實 DOM

  • Updating(更新):正在被重新渲染

  • Unmounting(卸載):已移出真實 DOM

第一個階段:
代碼演示第一個階段初始化掛載階段
import React, { Component } from "react";
 
class App extends Component {
  constructor(props) {
    super(props);
    this.state = {};
    console.log("初始化");
  }
  componentDidMount() {
    console.log("掛載完成");
  }
  render() {
    console.log("渲染");
    return (
      <>
        <div>測試</div>
      </>
    );
  }
}
 
export default App;

react中context傳值和生命周期源碼分析

添加了掛載之前周期

react中context傳值和生命周期源碼分析

 UNSAFE_componentWillMount() {
    console.log("掛載之前");
  }
 //18.x 版本中UNSAFE_ 前綴

react中context傳值和生命周期源碼分析

第二個階段:更新階段
能觸發類組件更新  props state

添加了更新之前周期

componentWillUpdate() {
    console.log("更新之前");
}

第三階段卸載:

react中context傳值和生命周期源碼分析

 //卸載周期
  componentWillUnmount() {
    console.log("組件卸載");
  }

常用周期:

react中context傳值和生命周期源碼分析

測試完成之后:18版本直接使用周期以上三個。

react推薦網絡請求在componentDidMount
卸載清除副作用   componentWillUnmount

確認當前組件是否更新周期

//確認是否更新周期
  //必須帶返回值  true  false
  //提升性能
  shouldComponentUpdate(nextProps, nextState, nextContext) {
    console.log(nextProps);
    if (nextProps.name == this.props.name) return false;
    else return true;
  }
  不寫該周期默認是執行更新
1.componentWillMount() - 在染之前執行,在客戶端和服務器端都會執行.
2.componentDidMount() - 是掛在完成之后執行一次
3.componentWillReceiveProps() - 當從父類接收到 props 并且在調用另一個渲染器器之前調用。4.shouldComponentUpdatel) -根據特定條件返回 true 或 false如果你希望更新組件,請返回true 否則返它返回 false。
5.componentWillUpdate() - 是當前組件state和props發生變化之前執行
6.componentDidUpdate()-是當前組件state和props發生變化執行
7.componentWillUnmount0) - 從 DOM 卸載組件后調用。用于清理內存空間

react中context傳值和生命周期源碼分析

react中context傳值和生命周期源碼分析

到此,相信大家對“react中context傳值和生命周期源碼分析”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

AI

股票| 元氏县| 瓮安县| 塘沽区| 台南县| 扶绥县| 赣州市| 泽普县| 玉林市| 伊金霍洛旗| 丹寨县| 淮安市| 五指山市| 兖州市| 油尖旺区| 嫩江县| 原阳县| 盐源县| 临城县| 根河市| 崇礼县| 陵水| 永靖县| 顺平县| 南开区| 高阳县| 彭水| 罗定市| 都昌县| 稷山县| 桐梓县| 云霄县| 客服| 永福县| 五台县| 中宁县| 郧西县| 平乡县| 九江县| 黄平县| 尚义县|