您好,登錄后才能下訂單哦!
這篇文章主要講解了“react函數組件對比類組件有哪些優勢”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“react函數組件對比類組件有哪些優勢”吧!
react函數組件比類組件的優勢在:1、函數組件語法更短、更簡單,這使得它更容易開發、理解和測試;2、函數式組件性能消耗小,因為函數式組件不需要創建實例,渲染的時候就執行一下,得到返回的react元素后就直接把中間量全部都銷毀。
本教程操作環境:Windows7系統、react17.0.1版、Dell G3電腦。
一、類組件
類組件,顧名思義,也就是通過使用ES6類的編寫形式去編寫組件,該類必須繼承React.Component
如果想要訪問父組件傳遞過來的參數,可通過this.props的方式去訪問
在組件中必須實現render方法,在return中返回React對象,如下:
class Welcome extends React.Component { constructor(props) { super(props) } render() { return <h2>Hello,{this.props.name}</h2> }
二、函數組件
函數組件,顧名思義,就是通過函數編寫的形式去實現一個React組件,是React中定義組件最簡單的方式
function Welcome(props) { return <h2>Hello,{props.name}</h2>; }
函數第一個參數為props用于接收父組件傳遞過來的參數
三、區別
針對兩種React組件,其區別主要分成以下幾大方向:
1、編寫形式
兩者最明顯的區別在于編寫形式的不同,同一種功能的實現可以分別對應類組件和函數組件的編寫形式
函數組件:
function Welcome(props) { return <h2>Hello, {props.name}</h2>; }
類組件:
cass Welcome extends React.Component { constructor(props) { super(props) } render() { return <h2>Hello,{this.props.name}</h2> } }
2、狀態管理
在hooks出來之前,函數組件就是無狀態組件,不能保管組件的狀態,不像類組件中調用setState
如果想要管理state狀態,可以使用useState,如下:
const FunctionalComponent=()=> { const [count, setCount]=React.useState(0); return ( <div> <p>count: {count}</p> <button onClick= {()=> setCount(count + 1)}>Click</button> </div>); };
在使用hooks情況下,一般如果函數組件調用state,則需要創建一個類組件或者state提升到你的父組件中,然后通過props對象傳遞到子組件
3、生命周期
在函數組件中,并不存在生命周期,這是因為這些生命周期鉤子都來自于繼承的React.Component
所以,如果用到生命周期,就只能使用類組件
但是函數組件使用useEffect也能夠完成替代生命周期的作用,這里給出一個簡單的例子:
const FunctionalComponent=()=> { useEffect(()=> { console.log("Hello"); } , []); return <h2>Hello,World</h2>; };
上述簡單的例子對應類組件中的componentDidMount生命周期
如果在useEffect回調函數中return一個函數,則return函數會在組件卸載的時候執行,正如componentWillUnmount
const FunctionalComponent=()=> { React.useEffect(()=> { return ()=> { console.log("Bye"); }; } , []); return <h2>Bye,World</h2>; };
4、調用方式
如果是一個函數組件,調用則是執行函數即可:
// 你的代碼 function SayHi() { return <p>Hello, React</p> } // React內部 const result = SayHi(props) // <p>Hello, React</p>
如果是一個類組件,則需要將組件進行實例化,然后調用實例對象的render方法:
// 你的代碼 class SayHi extends React.Component { render() { return <p>Hello,React</p> } } // React內部 const instance = new SayHi(props) // SayHi {} const result = instance.render() // <p>Hello, React</p>
5、獲取渲染的值
首先給出一個示例
函數組件對應如下:
function ProfilePage(props) { const showMessage=()=> { alert('Followed '+ props.user); } const handleClick=()=> { setTimeout(showMessage, 3000); } return (<button onClick= { handleClick } >Follow</button>) }
類組件對應如下:
class ProfilePage extends React.Component { showMessage() { alert('Followed '+ this.props.user); } handleClick() { setTimeout(this.showMessage.bind(this), 3000); } render() { return <button onClick= { this.handleClick.bind(this) } >Follow</button> } }
兩者看起來實現功能是一致的,但是在類組件中,輸出this.props.user,Props在 React中是不可變的所以它永遠不會改變,但是 this 總是可變的,以便您可以在 render 和生命周期函數中讀取新版本
因此,如果我們的組件在請求運行時更新。this.props 將會改變。showMessage方法從“最新”的 props 中讀取 user
而函數組件,本身就不存在this,props并不發生改變,因此同樣是點擊,alert的內容仍舊是之前的內容
感謝各位的閱讀,以上就是“react函數組件對比類組件有哪些優勢”的內容了,經過本文的學習后,相信大家對react函數組件對比類組件有哪些優勢這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。