File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -691,7 +691,7 @@ function Counter() {
691
691
692
692
(` setCount ` 函数的身份是被确保稳定的,所以可以放心的省略掉)
693
693
694
- 在一些更加复杂的场景中(例如鳄鱼共一个 state 依赖于另一个 state),尝试用 [ ` useReducer ` Hook] ( /docs/hooks-reference.html#usereducer ) 把 state 更新逻辑一道 effect 之外。[ 这篇文章] ( https://adamrackis.dev/state-and-use-reducer/ ) 提供了一个你该如何做到这一点的案例。 ** ` useReducer ` 的 ` dispatch ` 的身份永远是稳定的** —— 即使 reducer 函数是定义在组件内部并且依赖 props。
694
+ 在一些更加复杂的场景中(比如一个 state 依赖于另一个 state),尝试用 [ ` useReducer ` Hook] ( /docs/hooks-reference.html#usereducer ) 把 state 更新逻辑一道 effect 之外。[ 这篇文章] ( https://adamrackis.dev/state-and-use-reducer/ ) 提供了一个你该如何做到这一点的案例。 ** ` useReducer ` 的 ` dispatch ` 的身份永远是稳定的** —— 即使 reducer 函数是定义在组件内部并且依赖 props。
695
695
696
696
万不得已的情况下,如果你想要类似 class 中的 ` this ` 的功能,你可以 [ 使用一个 ref] ( /docs/hooks-faq.html#is-there-something-like-instance-variables ) 来保存一个可变的变量。然后你就可以对它进行读写了。举个例子:
697
697
You can’t perform that action at this time.
0 commit comments