#componentを定義する際に、class構文かfunctionか
公式のドキュメントでは「Reactはどちらも同じように認識する」のような記載があったと思うのですが、実際にこの2つはどのように使い分けていけばよいのでしょうか?
##例えば、リストを表示させる場合
公式にあるように、数字をリスト表示させる場合を考えます。
Lists and Keys - React
functionで定義する場合(公式より引用
function NumberList(props) { const numbers = props.numbers; const listItems = numbers.map((number) => <li key={number.toString()}> {number} </li> ); return ( <ul>{listItems}</ul> ); } const numbers = [1, 2, 3, 4, 5]; ReactDOM.render( <NumberList numbers={numbers} />, document.getElementById('root') );
class構文で定義する場合
class NumberList extends React.Component { constructor(props) { super(props); } render() { return ( <ul>{listItems}</ul> ); } const numbers = [1, 2, 3, 4, 5]; const listItems = numbers.map((number) => <li key={number.toString()}> {number} </li> ); ReactDOM.render( <NumberList numbers={numbers} />, document.getElementById('root') );
このように、functionで定義した場合はconst listItems
が関数内に入っているのですが、classで定義する場合にはclass内に入れることができず、何となくもどかしいというか。
componentの種類などによりこの2つを使い分けたほうがいいのか、どちらかに統一してしまったほうがいいのか、使い分けの方法を教えてほしいです。
よろしくお願いします。
<<追記>>
In an ideal world, most of your components would be stateless functions because in the future we’ll also be able to make performance optimizations specific to these components by avoiding unnecessary checks and memory allocations. This is the recommended pattern, when possible.

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/03/25 03:34
2018/03/25 04:14