- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个应用程序,我需要在初始渲染时创建一个对象并在整个组件生命周期内保留它。
我的代码现在看起来像这样:
function Component() {
const obj = useRef(new Smth());
return (
<div>
<button onClick={obj.current.p}>p</button>
<button onClick={obj.current.c}>c</button>
</div>
);
};
React 文档说:
useRef returns a mutable ref object whose .current property is initialized to the passed argument (initialValue). The returned object will persist for the full lifetime of the component.
来自:https://reactjs.org/docs/hooks-reference.html#useref
看来我用的很到位。然而,Hooks FAQ 说:
You might also occasionally want to avoid re-creating the useRef() initial value. For example, maybe you want to ensure some imperative class instance only gets created once:
function Image(props) {
// ⚠️ IntersectionObserver is created on every render
const ref = useRef(new IntersectionObserver(onIntersect));
// ...
}
useRef does not accept a special function overload like useState. Instead, you can write your own function that creates and sets it lazily:
function Image(props) {
const ref = useRef(null);
// ✅ IntersectionObserver is created lazily once
function getObserver() {
if (ref.current === null) {
ref.current = new IntersectionObserver(onIntersect);
}
return ref.current;
}
// When you need it, call getObserver()
// ...
}
来自:https://reactjs.org/docs/hooks-faq.html#is-there-something-like-instance-variables
那么初始值是否被重新创建?
最佳答案
So does the initial value get recreated or not?
是的,可以重新创建初始值,但随后会丢弃。因此你可以在 useRef
中保留一些值并且它不会在重新渲染之间丢失,你也可以根据需要修改它。
是similar对于 useState
,如果您将一个值传递给它的构造函数,它会被重新计算,但随后会被丢弃。您可以将函数传递给 useState
,它只会执行一次。显然根据文档,useRef
没有这样的选项。但是你可以根据 docs 来模拟:
const ref = useRef(null);
// ✅ IntersectionObserver is created lazily once
function getObserver() {
if (ref.current === null) {
ref.current = new IntersectionObserver(onIntersect);
}
return ref.current;
}
关于reactjs - useRef react Hook 的确切行为是什么?是否在每次重新渲染时重新创建对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72402329/
我有多个按钮,单击它们会触发不同的音频文件。 我设法为每个按钮使用不同的 useRef 使其工作,但我想有更好的方法来实现这一点: const App = () => { const myAudi
我有多个按钮,单击它们会触发不同的音频文件。 我设法为每个按钮使用不同的 useRef 使其工作,但我想有更好的方法来实现这一点: const App = () => { const myAudi
我正在阅读有关 React 中的钩子(Hook)的内容,但我在理解 useRef 和 useCallback 钩子(Hook)之间的区别时遇到了一些困难。 具体来说,我希望了解如何使用这两者来避免子组
我正在尝试使用 Element.getBoundingClientRect() 来获取 dom 元素的 x、y、top、left 值。 const editorRef = useRef() ... /
NX构建在本地成功,但在Amplify上失败,错误如下:。即使我没有在代码中的任何地方使用useRef,这种情况也会发生。。我尝试添加一个error.tsx文件,因为错误表明它们来自预渲染/404和/
问题是 useRef 在第一次渲染时被触发。这可能是一个问题的两个例子。 When one can have some loading const Problem1 = () => { const
查看 hooks 文档和一些博客我们了解到,在使用 useRef() 时,我们存储了一个可变值。 Docs : You might be familiar with refs primarily as
我对下面使用 useRef 存储以前的状态值感到困惑。本质上,它如何能够正确显示先前的值。由于 useEffect 依赖于“value”,我的理解是每次“value”更改时(即当用户更新文本框时),它
当我编写此代码时,出现错误: React Hook "useRef" cannot be called inside a callback. React Hooks must be called in
我想知道这两个代码之间的区别 1: import React from "react"; import ReactDOM from "react-dom"; function App() { co
我有以下组件: const ParentComponent: React.FC = () => { const networkRef: any = useRef(); // Somew
转向功能性 React 组件,useRef 似乎是镜像类级别变量的方式。考虑: class Component extends React.Component { private readon
我有以下组件: // component.js import React from 'react'; import useComponentSize from 'useComponentSize';
我正在尝试设置为使用 useRef设置 div 的 ref 的钩子(Hook),但似乎一旦找到 ref 值就不会更新。下面怎么可能? const SelectDropDown = props
今天使用 react 的 ref 可能有点令人困惑。 回到类组件的时代,文档中非常清楚。 我们应该将 refs 主要用于 DOM 元素 : https://reactjs.org/docs/refs-
人们使用 useRef 来保存最新的值,如此代码 function MyComponent({ value }) { const valueRef = useRef(); useEffect(
我使用 React 的 useRef 钩子(Hook)捕获了一个元素。 如果我使用 console.log(this.inputRef) 我得到: 有没有办法使用 this.inputRef 更改该
我想使用 useRef Hook 来更改 DOM 元素的样式: const Box = props => { const box = useRef(0); const onClick = ()
我已阅读A Complete Guide to useEffect - Swimming Against the Tide react 过度。 这个例子表明,如果我们想要获取最新的count,我们可以
继续我的最后一个问题here ,我一直在尝试将引用映射到其他路线。滚动处理程序正在工作,但 ref.current 为 null。所以我正在寻找这个困境的答案。 不使用外部依赖项,如何解决此问题? 应
我是一名优秀的程序员,十分优秀!