您好,登錄后才能下訂單哦!
這篇文章主要介紹了React高階組件如何使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇React高階組件如何使用文章都會有所收獲,下面我們一起來看看吧。
把一個函數作為另一個函數的參數,那么這個函數就是高階函數
一個組件的參數是組件,并且返回值是一個組件,我們稱這類組件為高階組件
withRouter()
memo()
react-redux中connect
React中的高階組件主要有兩種形式:屬性代理和反向繼承
屬性代理:一個函數接收一個WrappedComponent組件作為參數傳入,并返回一個繼承React.Component組件的類,且在該類的render()方法中返回被傳入的WrappedComponent組件
反向繼承:是一個函數接收一個WrappedComponent組件作為參數傳入,并返回一個繼承了該傳入的WrappedComponent組件的類,且在該類的render()方法中返回super.render()方法
注意:反向繼承必須使用類組件,因為函數組件沒有this指向
屬性繼承方式的代碼
function Goods(props) { console.log(props); return ( <div className="box1"> <h4 style={{color:props.color}}>Hello Js</h4> </div> ) } //高階組件的代碼, 屬性代理的方式 function Color(WrapperComponent){ return class Color extends React.Component{ render(){ console.log(this.props) let obj = {color:"#0088dd"} return ( <WrapperComponent {...this.props} {...obj}/> ) } } } export default Color(Goods);
高階組件我們也可以把他進行單獨的剝離出來,然后把他在各個組件中使用
HOC.js文件
import React from 'react'; //高階組件的代碼, 屬性代理的方式 export default function Mouse(WrapperComponent){ return class Mouse extends React.Component{ constructor(props){ super(props); this.state = { x:0, y:0, } this.getMouse(); } getMouse = ()=>{ document.addEventListener("mousemove",(event)=>{ this.setState({ x:event.clientX, y:event.clientY }) }) } render() { // console.log(this.state); return ( <WrapperComponent {...this.props} {...this.state}/> ) } } }
goods.js文件
import Mouse from "../context/HOC"; function Goods(props) { console.log(props); let {x,y} = props; return ( <div className="box1"> <div> 鼠標坐標:x:{x},y:{y} </div> <h4 >Hello Js</h4> </div> ) } export default Mouse(Goods);
關于“React高階組件如何使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“React高階組件如何使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。