- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
Hier 是我遇到的一个问题的例子:
import ReactDOM from "react-dom/client";
import React, { useState, useEffect } from "react";
const App = () => {
// problematic
const [radio, setRadio] = useState(1);
useEffect(() => {
const localRadio = localStorage.getItem('radio');
if (localRadio) {
setRadio(+localRadio);
}
}, []);
// My "solution" using an initializer to read from localStorage
// const [radio, setRadio] = useState(() => {
// const localRadio = localStorage.getItem('radio');
// return localRadio ? +localRadio : 1;
// });
useEffect(() => {
localStorage.setItem('radio', radio);
}, [radio]);
const radioChangeHandler = (event) => {
setRadio(+event.target.value);
};
return (
<div>
<h1>useState initializer demo</h1>
<div className="radio-group" onChange={radioChangeHandler}>
<input
type="radio"
value="1"
checked={radio === 1}
id="language1"
name="languageChoice"
/>
<label htmlFor="language1">Javascript</label>
<input
type="radio"
value="2"
checked={radio === 2}
id="language2"
name="languageChoice"
/>
<label htmlFor="language2">HTML</label>
<input
type="radio"
value="3"
checked={radio === 3}
id="language3"
name="languageChoice"
/>
<label htmlFor="language3">CSS</label>
</div>
</div>
);
};
const container = document.querySelector("#root");
const root = ReactDOM.createRoot(container);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
想法是每次 radio
改变时写入 localStorage。当我打开/刷新网站时,它应该从 localStorage 读取并设置值。但是后来我遇到了一个问题,即使用 [radio]
的 useEffect 总是会覆盖另一个,所以无论一开始在 localStorage 中写了什么,我总是得到 1 作为 radio 的值。
(我刚刚发现如果我删除 StrictMode 代码实际上可以工作,我想我之前已经测试过它......但是 React 希望应用程序在渲染两次时也能工作。)
我的解决方案是使用初始化函数从 localStorage 中读取(注释掉的代码)。它工作正常,我为自己感到骄傲。然后我读了https://beta.reactjs.org/apis/react/useState#parameters
If you pass a function as initialState, it will be treated as an initializer function. It should be pure, should take no arguments, and should return a value of any type.
也在 https://beta.reactjs.org/apis/react/useReducer#my-reducer-or-initializer-function-runs-twice 上
Only component, initializer, and reducer functions need to be pure.
这是否意味着我不应该在初始化程序中读取 localStorage(或从 API 获取数据)?什么是正确的方法?
为了深入研究 React Hooks,我决定尝试制作 snake 并使用 useReducer/useContext 状态管理。 现在,我被阻止在需要方向键来更改事件图 block 状态的地方。在 u
现在我尝试使用 useReducer 创建一种管理状态和功能的新方法,但现在发现问题是“Hooks 只能在函数组件的主体内部调用”有什么办法可以解决这个问题吗? // App Component im
我正在尝试创建一个可重复使用的useReducer与打字 Hook 。 这是我当前的代码: type State = { data?: T isLoading: boolean error
我正在编写一个自定义 Hook 来从 API 获取一些数据。如果可能的话,我希望返回的数据是类型安全的。这可以用泛型来完成吗? type Action = { type: 'PENDING' } |
我正在尝试创建一个可重复使用的useReducer与打字 Hook 。 这是我当前的代码: type State = { data?: T isLoading: boolean error
来自docs : [init, the 3d argument] lets you extract the logic for calculating the initial state outsid
我已经实现了一种相当简单的方法来将撤消添加到 useReducer 中,方法如下: export const stateMiddleware = reducerFunc => { return f
根据 React 文档: useReducer is usually preferable to useState when you have complex state logic that inv
我注意到在许多 useReducer 示例中,展开运算符在 reducer 中的使用方式如下: const reducer = (state, action) => { switch (actio
我想使用 React.useReducer 来更新状态。我的状态是一组对象。触发更新操作时,不仅更新所需索引中的值,而且更新所有这些值。我只想更新指定数组索引中的值。我该怎么做? 点击button1后
我有一个状态对象,其中包含一个名为 rows 的数组。该数组包含一个对象列表: {_id: "5e88ad4c5f6f7388d50b9480", stampa: "Confezione", S: 0
使用 useReducer 时是否可以使用调度功能发送多个操作? Hook react ?我尝试将一系列操作传递给它,但这会引发未处理的运行时异常。 明确地说,通常会有一个初始状态对象和一个 redu
我有这些: export type DataItemChild = { id: number; title:string; checked?: boolean; }; 请注意,子项可以在此
假设我实现了一个简单的全局加载状态,如下所示: // hooks/useLoading.js import React, { createContext, useContext, useReducer
我不仅需要在 ComponentDidMount 上使用 loadData() 从服务器获取数据,还需要在 onFiltersClear、onApplyFilters 和 方法之后使用>onPageC
如果我在使用 时需要添加一些副作用,我想知道我有哪些选择useReducer 钩。 例如,有一个 TODO-app: const initialState = {items: []}; const r
useReducer is usually preferable to useState when you have complex state logic that involves multipl
场景 我有一个返回操作的自定义 Hook 。 父组件“Container”利用自定义钩子(Hook)并将操作作为 prop 传递给子组件。 问题 当从子组件执行操作时,实际调度会发生两次。 现在,如果
我正在尝试使用新的 React useReducer API 获取一些数据,但卡在了我需要异步获取它的阶段。我只是不知道怎么办:/ 如何将数据获取放在 switch 语句中,或者这不是应该完成的方法?
这个问题在这里已经有了答案: Why is localStorage getting cleared whenever I refresh the page? (3 个答案) 关闭 5 个月前。 H
我是一名优秀的程序员,十分优秀!