這篇文章將為大家詳細(xì)講解有關(guān)react如何創(chuàng)建組件,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括豐南網(wǎng)站建設(shè)、豐南網(wǎng)站制作、豐南網(wǎng)頁制作以及豐南網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,豐南網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到豐南省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
react創(chuàng)建組件的三種方式及他們的異同點(diǎn)介紹:
一、函數(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)?!竟P者的意思就是盡量用父組件去操控子組件,子組件用來展示,父組件負(fù)責(zé)邏輯】
二、es5方式React.createClass組件
1、語法
var myCreate = React.createClass({ defaultProps: { //code }, getInitialState: function() { return { //code }; }, render:function(){ return ( //code ); } })
2、特點(diǎn)
這種方式比較陳舊,慢慢會被淘汰
三、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)建組件的基本原則:
1、組件名首字母要大寫
2、組件只能包含一個(gè)根節(jié)點(diǎn)(如果這個(gè)根節(jié)點(diǎn)你不想要標(biāo)簽將它包住的話可以引入Fragment
3、盡量使用函數(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}} }
關(guān)于react如何創(chuàng)建組件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。