以下是react建立元件的三種方式及特點,希望能對大家有幫助。
1、函數式元件:
(1)語法:
function myConponent(props) { return `Hello${props.name}` }
(2)特點:
新增了hooks的API可以去官網了解下,以前是無狀態元件,現在是可以有狀態的了
元件不能存取this物件
不能存取生命週期方法
(3)建議:
如果可能,盡量使用無狀態元件,保持簡潔和無狀態。 【筆者的意思就是盡量用父元件去操控子元件,子元件用來展示,父元件負責邏輯】
#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类中函数必须手动绑定 this.handleChange = this.handleChange.bind(this); } handleChange() { this.setState({ state_exam: 'hello world' }); } render() { return( //code ) }; }
(2)特點:
成員函數不會自動綁定this,需要開發者手動綁定,否則this不能取得目前元件實例物件。
狀態state是在constructor中初始化
props屬性類型和元件預設屬性作為組成類別的屬性,不是元件實例的屬性,所以使用類別的靜態配置。
請朋友們瑾記建立元件的基本原則:
元件名稱首字母要大寫
元件只能包含一個根節點(如果這個根節點你不想要標籤將它包住的話可以引入Fragment,Fragment不會用沒關係,可以觀看筆者的react基礎知識整理(1)這篇文章)
盡量使用函數式元件,保持簡潔和無狀態。
最後我們比較一下函數元件和class元件對於一個相同功能的寫法差距:
由父元件控制狀態的比較
函數元件:
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> } }
自己維護狀態的比較
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> } }
相關推薦:react教學
以上是react創建元件的三種方式是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!