這篇文章主要介紹了react創(chuàng)建組件有哪些方法,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)主營黃南州網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app開發(fā)定制,黃南州h5微信小程序定制開發(fā)搭建,黃南州網(wǎng)站營銷推廣歡迎黃南州等地區(qū)企業(yè)咨詢
1、函數(shù)式組件:
(1)語法:
function myConponent(props) { return `Hello${props.name}` }
(2)特點(diǎn):
新增了hooks的API可以去官網(wǎng)了解下,以前是無狀態(tài)組件,現(xiàn)在是可以有狀態(tài)的了
組件不能訪問this對象
不能訪問生命周期方法
(3)建議:
如果可能,盡量使用無狀態(tài)組件,保持簡潔和無狀態(tài)。【筆者的意思就是盡量用父組件去操控子組件,子組件用來展示,父組件負(fù)責(zé)邏輯】
2、es5方式React.createClass組件
(1)語法:
var myCreate = React.createClass({ defaultProps: { //code }, getInitialState: function() { return { //code }; }, render:function(){ return ( //code ); } })
(2)特點(diǎn):
這種方式比較陳舊,慢慢會被淘汰
(免費(fèi)視頻教程推薦:javascript視頻教程)
3、es6方式class:
(1)語法:
class InputControlES6 extends React.Component { constructor(props) { super(props); this.state = { state_exam: props.exam } //ES6類中函數(shù)必須手動綁定 this.handleChange = this.handleChange.bind(this); } handleChange() { this.setState({ state_exam: 'hello world' }); } render() { return( //code ) }; }
(2)特點(diǎn):
成員函數(shù)不會自動綁定this,需要開發(fā)者手動綁定,否則this不能獲取當(dāng)前組件實(shí)例對象。
狀態(tài)state是在constructor中初始化
props屬性類型和組件默認(rèn)屬性作為組建類的屬性,不是組件實(shí)例的屬性,所以使用類的靜態(tài)性配置。
請朋友們瑾記創(chuàng)建組件的基本原則:
組件名首字母要大寫
組件只能包含一個(gè)根節(jié)點(diǎn)(如果這個(gè)根節(jié)點(diǎn)你不想要標(biāo)簽將它包住的話可以引入Fragment,F(xiàn)ragment不會用沒關(guān)系,可以觀看筆者的react基礎(chǔ)知識整理(1)這篇文章)
盡量使用函數(shù)式組件,保持簡潔和無狀態(tài)。
最后我們對比一下函數(shù)組件和class組件對于一個(gè)相同功能的寫法差距:
由父組件控制狀態(tài)的對比
函數(shù)組件:
function App(props) { function handleClick() { props.dispatch({ type: 'app/create' }); } return{props.name}}
class組件:
class App extends React.Component { handleClick() { this.props.dispatch({ type: 'app/create' }); } render() { return{this.props.name}} }
自己維護(hù)狀態(tài)的對比
import React, { useState } from 'react'; function App(props) { const [count, setCount] = useState(0); function handleClick() { setCount(count + 1); } return{count}}
class組件:
class App extends React.Component { state = { count: 0 } handleClick() { this.setState({ count: this.state.count +1 }) } render() { return{this.state.count}} }
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“react創(chuàng)建組件有哪些方法”這篇文章對大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!