3
如何發信號通知React功能組件是「純」的,相當於組件類React.PureComponent
?聲明一個功能組件爲「純」
function C(props) {
return <var>{props.n}</var>
}
沒有使其成爲一類
class C extends React.PureComponent {
render() {
return <var>{this.props.n}</var>
}
}
@AndrewLi純函數,而不是一個純粹的組件(即使用比較淺的一個組成部分)。 – Sulthan