- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读一篇名为“A Complete Guide to useEffect ” 并尝试实现和来自“Why useReducer Is the Cheat Mode of Hooks 的示例”部分。
在该示例中,有一个 Counter
组件在 useReducer
钩子(Hook)的帮助下定义状态(只是一个数字)。 Reducer 只处理一个 Action ——'tick'
,在该 Action 上它会根据 step
属性的值递增状态。 'tick'
操作在 useEffect
钩子(Hook)中设置的间隔函数中每秒调度一次。
以下是该示例的代码,稍作修改:
function Counter({ step }) {
const [count, dispatch] = React.useReducer(reducer, 0);
function reducer(state, action) {
if (action.type === "tick") {
console.log(`Reducer: state=${state} and step=${step}`);
return state + step;
} else {
throw new Error(`Unknown action type: ${action.type}`);
}
}
React.useEffect(() => {
console.log("Create interval");
const id = setInterval(() => {
console.log("Dispatch");
dispatch({ type: "tick" });
}, 1000);
return () => {
console.log("Clear interval");
clearInterval(id);
};
}, [dispatch]);
return <h1>{count}</h1>;
}
function App() {
const [step, setStep] = React.useState(0);
return (
<>
<Counter step={step} />
<input
type="number"
value={step}
onChange={(e) => setStep(Number(e.target.value))}
/>
</>
);
}
我发现该示例适用于 react@16.8.0-alpha.0
而不适用于 react@16.8.0
及更高版本。当我运行代码时,步长和计数器的初始值为 0
。如果我等待 3 秒而不做任何更改,然后增加步骤,我将得到以下输出:
Create interval
Dispatch
Reducer: state=0 and step=0
Dispatch
Reducer: state=0 and step=0
Dispatch
Reducer: state=0 and step=0
Reducer: state=0 and step=1
Reducer: state=1 and step=1
Reducer: state=2 and step=1
Dispatch
Reducer: state=3 and step=1
Reducer: state=3 and step=1
Dispatch
Reducer: state=4 and step=1
Dispatch
Reducer: state=5 and step=1
正如您在日志中看到的,reducer 的执行次数超过了 “tick”
操作的调度次数。
我已经设法通过从 step
prop 创建一个 ref 并使用 useCallback
钩子(Hook)记住 reducer 而没有任何依赖性,使其按预期工作。
const stepRef = React.useRef(step);
React.useEffect(() => {
stepRef.current = step;
}, [step]);
const reducer = useCallback((state, action) => {
if (action.type === "tick") {
console.log(`Reducer: state=${state} and step=${stepRef.current}`);
return state + stepRef.current;
} else {
throw new Error(`Unknown action type: ${action.type}`);
}
}, []);
您可以在这里尝试示例:
react@16.8.0-alpha.0
,它将按预期工作);但问题仍然存在。
useReducer
Hook 的那些行为(react@16.8.0-alpha.0
或 react@16.8.0
)是什么错误的例子在现在的 React 中被认为是正确的?最后一个问题的答案应该与正在重新创建 reducer 的事实有某种关系。无论是在每次渲染时还是仅在 step
属性发生变化时,都没有关系,因为使用 useCallback
钩子(Hook)和传递 [step]
来记住 reducer因为依赖数组不能解决问题。有人对此有任何想法吗?
谢谢!
最佳答案
useReducer
需要记住 reducer
才能说明组件是否需要重新渲染(需要它来计算状态并将其与之前的状态进行比较)。但是它可以访问的 reducer 可能已经过时,因为您可以“交换” reducer 。因此,在 reducer 状态与前一个相同的情况下,React 不会将结果丢弃并收工,而是将结果以及用于计算它的 reducer 存储起来,直到下一次重新渲染和然后检查 reducer 是否仍然相同。如果不是,则使用新的 reducer 再次计算状态。
你的例子是一个边缘案例。它不应该那样工作,但 React 不知道什么时候它应该丢弃陈旧的 reducer 状态更新——它总是等到下一次重新渲染来比较 reducer 并计算将在重新渲染中使用的最终状态。
这是一个描述它的简化示例:最初 step
是 0
。 dispatch
运行了 3 次。结果是0 + 0 + 0 = 0
并且显示正确。然后,当您单击该按钮时,step
更改为 1
但 dispatch
甚至一次都不会触发。尽管如此,现在的结果是 3
,因为之前的所有操作都使用新创建的 reducer 重新运行。
function App() {
console.log("rendering");
const [step, setStep] = React.useState(0);
const [count, dispatch] = React.useReducer(reducer, 0);
function reducer(state, action) {
if (action.type === "tick") {
console.log(`Reducer: state=${state} and step=${step}`);
return state + step;
}
}
React.useEffect(() => {
for(let i = 0; i < 3; i++) {
console.log("Dispatch");
dispatch({ type: "tick" });
}
}, []);
return (
<div>
<span>{count} </span>
<button
onClick={(e) => setStep(step + 1)}
>step +1</button>
</div>
);
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.8.0/umd/react.development.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.8.0/umd/react-dom.development.js"></script>
<div id="root"></div>
解决方案是使 reducer 纯净(从一开始就应该如此)并在 action.payload
中传递所有必需的数据(如果需要,ref
ing things ).
function reducer(state, action) {
if (action.type === "tick") {
const { step } = action.payload;
console.log(`Reducer: state=${state} and step=${step}`);
return state + step;
}
}
function Counter({ step }) {
const [count, dispatch] = React.useReducer(reducer, 0);
const stepRef = React.useRef();
stepRef.current = step;
React.useEffect(() => {
console.log("Create interval");
const id = setInterval(() => {
console.log("Dispatch");
dispatch({ type: "tick", payload: { step: stepRef.current }});
}, 1000);
return () => {
console.log("Clear interval");
clearInterval(id);
};
}, [dispatch]);
return <span>{count} </span>;
}
function App() {
const [step, setStep] = React.useState(0);
return (
<div>
<Counter step={step} />
<input
type="number"
value={step}
onChange={(e) => setStep(Number(e.target.value))}
/>
</div>
);
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.8.0/umd/react.development.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.8.0/umd/react-dom.development.js"></script>
<div id="root"></div>
关于javascript - 当 reducer 函数依赖于组件 prop 时,传递给 useReducer 钩子(Hook)的 Reducer 函数会针对一次调度调用执行多次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63632469/
我仍在学习如何将 API 数据与 react 和 nextjs 一起使用。但是,为什么我的函数只在我编写 {props.props.title} 而不是我期望的 {props.title} 时起作用?
我仍在学习如何将 API 数据与 react 和 nextjs 一起使用。但是,为什么我的函数只在我编写 {props.props.title} 而不是我期望的 {props.title} 时起作用?
我正在用 TypeScript 构建一个 React 应用程序。我有一个 RequiresPermission基于谓词的组件应该渲染一个或另一个组件并转发所有 Prop 。 type Props =
我想通过 gatsby 布局传递我所有的 props。例如: import React, { Component } from 'react'; export default class Exampl
如果我使用合成属性,那我为什么不直接说: self.property = nil; 这将释放引用计数,并确保我没有悬挂指针。 看起来很简单,但我看到的 99% 的代码似乎都是这样做的: [proper
Eslint 抛出 eslint(react/prop-types) 错误,尽管已经声明了 propTypes。我正在使用 eslint-plugin-react 我研究了其他几个类似的问题以及 li
我正在使用以下由 linter eslint-plugin-react 解析的代码。它返回警告: "product is missing in props validation" 当我在底部的 pro
我正在尝试在 React 应用程序中添加 TypeScript。 版本: "react": "16.9.0", "typescript": "3.5.3", 我有一个像这样的数组 import aLo
我有一个组件 . 如果组件没有 this.props.children , 我想设置 Prop ariaLabel作为isRequired ,否则 in 可以是可选的。我该怎么做? ariaLabe
我应该用一个代替另一个吗?一起使用它们更好吗?谢谢。 最佳答案 prop in obj 检查 obj 是否有名为 prop 的属性,即使它只是从原型(prototype)继承而来。 obj.hasOw
我的组件 Text有 2 个 Prop :isHideable: boolean和 hidden: boolean .我如何允许 Hidden仅在 isHideable 时作为 Prop 是true
我试图将带有一些 Prop 的功能组件发送到另一个组件,并在接收组件中尝试键入检查该组件的某些 Prop 。这是代码: // BaseButton.tsx export type ButtonProp
是否可以从也作为 prop 传递的未知组件推断出正确的 props 类型? 如果已知组件(存在于当前文件中),我可以获得 Prop : type ButtonProps = React.Compone
我对 react 还很陌生,这是我正在努力解决的问题。 有一个父组件 家长 它将 Prop 传递给 child 。 其中一个 Prop ,包括一个要渲染的元素,如下所示: 在子组件中,我想获取这个组
我想做一个 Tabs推断 active 的可能值的组件prop 基于它的 child 拥有的东西 name Prop 。这就是我尝试这样做的方式: import React from 'react'
我对 react 还很陌生,并且只有当用户开始向下滚动时,我才尝试将更多信息加载到记录数组中。问题是新信息出现在数组中,但如果您尝试调用它,它将返回undefined。我在这里不明白什么? 父组件:
因此,如果我对一个组件有很多不同的 Prop ,我希望我可以做类似的事情 const { ...props } = props; 而不是 const { prop1, prop2, prop3, ..
这是我寻求指导的问题类型,因为我不确定我正在寻找的内容是否存在...... 上下文:我正在使用 Firestore 来保存数据,并且正在构建一个可重用的自定义 Hook (React 16.8),以便
我有一个 React 组件,它获取一个配置对象作为 prop,它看起来像这样: { active: true, foo: { bar: 'baz' } } 在
如何附加另一个属性?我有一个 react 组件,其中有人传入 ...props,我想附加一个额外的 Prop 最佳答案 请记住,传递 Prop 的顺序将决定将哪个值传递给该组件。这适用于有两个同名
我是一名优秀的程序员,十分优秀!