REACT Stateless Functional Component

前端之家收集整理的这篇文章主要介绍了REACT Stateless Functional Component前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

stateless function component 在 0.14 版本中提供,适用于没有state ,输出内容的变化仅仅依赖于输入的props

that has no state and returns the same markup given the same props
const Hehe= (props) =>
    <p>hehe</p>;

好处:
1.代码少,结构清楚
2符合state放在顶层的设计模式
3.不用this bind
4.未来性能会好(目前比不上 pureComponent,后续版本会做优化。)

参考文档
https://medium.com/@housecor/react-stateless-functional-components-nine-wins-you-might-have-overlooked-997b0d933dbc#.utpf5xnsa

原文链接:https://www.f2er.com/react/305021.html

猜你在找的React相关文章