溫馨提示×

溫馨提示×

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

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

react創(chuàng)建組件有哪些方法

發(fā)布時間:2021-03-15 11:12:10 來源:億速云 閱讀:247 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了react創(chuàng)建組件有哪些方法,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

1、函數(shù)式組件:

(1)語法:

function myConponent(props) {
	return `Hello${props.name}`
}

(2)特點:

新增了hooks的API可以去官網(wǎng)了解下,以前是無狀態(tài)組件,現(xiàn)在是可以有狀態(tài)的了

組件不能訪問this對象

不能訪問生命周期方法

(3)建議:

如果可能,盡量使用無狀態(tài)組件,保持簡潔和無狀態(tài)?!竟P者的意思就是盡量用父組件去操控子組件,子組件用來展示,父組件負(fù)責(zé)邏輯】

2、es5方式React.createClass組件

(1)語法:

var myCreate = React.createClass({
	defaultProps: {
		//code
	},
	getInitialState: function() {
		return { //code };
	},
	render:function(){
		return ( //code );
	}
})

(2)特點:

這種方式比較陳舊,慢慢會被淘汰

(免費視頻教程推薦: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)特點:

成員函數(shù)不會自動綁定this,需要開發(fā)者手動綁定,否則this不能獲取當(dāng)前組件實例對象。

狀態(tài)state是在constructor中初始化

props屬性類型和組件默認(rèn)屬性作為組建類的屬性,不是組件實例的屬性,所以使用類的靜態(tài)性配置。

請朋友們瑾記創(chuàng)建組件的基本原則:

  • 組件名首字母要大寫

  • 組件只能包含一個根節(jié)點(如果這個根節(jié)點你不想要標(biāo)簽將它包住的話可以引入Fragment,F(xiàn)ragment不會用沒關(guān)系,可以觀看筆者的react基礎(chǔ)知識整理(1)這篇文章)

  • 盡量使用函數(shù)式組件,保持簡潔和無狀態(tài)。

最后我們對比一下函數(shù)組件和class組件對于一個相同功能的寫法差距:

由父組件控制狀態(tài)的對比

函數(shù)組件:

function App(props) {
	function handleClick() {
		props.dispatch({ type: 'app/create' });
	}
	return <div onClick={handleClick}>{props.name}</div>
}

class組件:

class App extends React.Component {
	handleClick() {
		this.props.dispatch({ type: 'app/create' });
	}
	render() {
		return <div onClick={this.handleClick.bind(this)}>{this.props.name}</div>
	}
}

自己維護狀態(tài)的對比

import React, { useState } from 'react';
function App(props) {
	const [count, setCount] = useState(0);
	function handleClick() {
		setCount(count + 1);
	}
	return <div onClick={handleClick}>{count}</div>
}

class組件:

class App extends React.Component {
	state = { count: 0 }
	handleClick() {
		this.setState({ count: this.state.count +1 })
	}
	render() {
		return <div onClick={this.handleClick.bind(this)}>{this.state.count}</div>
	}
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“react創(chuàng)建組件有哪些方法”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI