billfeller.github.io icon indicating copy to clipboard operation
billfeller.github.io copied to clipboard

React props vs state

Open billfeller opened this issue 7 years ago • 0 comments

转自:Think in React

判断数据是 props or state 的三条规则:

让我们来看看每一条,找出哪一个是 state。每个数据只要考虑三个问题:

它是通过 props 从父级传来的吗?如果是,他可能不是 state。 它随着时间推移不变吗?如果是,它可能不是 state。 你能够根据组件中任何其他的 state 或 props 把它计算出来吗?如果是,它不是 state。

billfeller avatar Sep 11 '17 08:09 billfeller