- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图以动态方式分配引用,但在 useRef 时收到错误“无效的钩子(Hook)调用。钩子(Hook)只能在函数组件的主体内部调用”。这里:
const [subsistemaPlanetario, setSubsistemaPlanetario] = useState([]);
const planetRefs = useRef({});
useEffect(() => {
async function fetchSubsistemaPlanetario() {
try {
const fetchedSubsistemaPlanetario = await getSubsistemaPlanetario();
setSubsistemaPlanetario(fetchedSubsistemaPlanetario);
fetchedSubsistemaPlanetario.forEach((planeta) => {
const camelCaseSlug = planeta.padre.slug.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase());
planetRefs.current[camelCaseSlug] = useRef(); // <------THIS LINE DROP AN ERROR
});
} catch (error) {
console.error(error);
}
}
fetchSubsistemaPlanetario();
}, []);
整个组件:
import {useFrame} from '@react-three/fiber';
import React, {useRef, useEffect, useState} from 'react';
import {Planet} from './Planet.jsx';
import {Satellite} from './Satellite.jsx';
import {Orbiter} from './utils/Orbiter.js';
import {calculateOrbitalPeriod} from './utils/calculateOrbitalPeriod.js';
import {getSubsistemaPlanetario} from './utils/getSubsistemaPlanetario.js';
export const SubsistemaPlanetario = function SubsistemaPlanetario(props) {
let running = true;
let stopRunning = () => (running = false);
let startRunning = () => (running = true);
const [subsistemaPlanetario, setSubsistemaPlanetario] = useState([]);
const planetRefs = useRef({});
useEffect(() => {
// Obtener el subsistema planetario cuando el componente se monta
async function fetchSubsistemaPlanetario() {
try {
const fetchedSubsistemaPlanetario = await getSubsistemaPlanetario();
setSubsistemaPlanetario(fetchedSubsistemaPlanetario);
fetchedSubsistemaPlanetario.forEach((planeta) => {
const camelCaseSlug = planeta.padre.slug.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase());
planetRefs.current[camelCaseSlug] = useRef();
console.log(planetRefs);
});
} catch (error) {
console.error(error);
}
}
fetchSubsistemaPlanetario();
}, []);
return (
<>
{subsistemaPlanetario.map((planetaPadre, index) => (
<Planet
key={index}
scale={0.5}
ref={planetRefs.current[index]}
stopRunning={stopRunning}
startRunning={startRunning}
textureType="haumea"
linkTo="areas"
linkToLabel="Areas"
/>
))}
</>
);
};
行星组件
import {forwardRef, useRef, useEffect, useContext, useState} from 'react';
import PropTypes from 'prop-types';
import {useTexture} from '@react-three/drei';
import {useFrame} from '@react-three/fiber';
import barba from '@barba/core';
import {solapaContentAbrir, solapaContentCerrar} from './utils/Solapa.js';
import {planets} from './utils/arrayTexturas.js';
// Define un objeto que mapea los tipos de textura a las rutas de los archivos de textura.
const textureMap = {};
for (const planet of planets) {
textureMap[planet] = `./app/themes/sage/resources/scripts/cosmos/components/textures/${planet}-512.jpg`;
}
export const Planet = forwardRef(function Planet(props, ref) {
// Obtén la ruta de la textura según el tipo especificado en props.textureType.
const texturePath = textureMap[props.textureType] || textureMap.sand;
const texture = useTexture(texturePath);
let rotationX = Math.random();
let rotationY = Math.random();
useFrame((state, delta) => {
ref.current.rotation.x += rotationX * delta;
ref.current.rotation.y += rotationY * delta;
});
return (
<mesh
{...props}
ref={ref}
castShadow
receiveShadow
onPointerEnter={(event) => {
props.stopRunning();
document.body.style.cursor = 'pointer';
solapaContentAbrir('Sección', props.linkToLabel);
event.stopPropagation();
}}
onPointerLeave={(event) => {
props.startRunning();
document.body.style.cursor = 'default';
solapaContentCerrar();
event.stopPropagation();
}}
onClick={(event) => {
barba.go(props.linkTo);
}}
>
<sphereGeometry />
<meshStandardMaterial map={texture} />
</mesh>
);
});
Planet.propTypes = {
stopRunning: PropTypes.func,
startRunning: PropTypes.func,
textureType: PropTypes.oneOf(['haumea', 'mars', 'neptune', 'venus', 'mercury', 'jupiter', 'saturn']),
userData: PropTypes.object,
radius: PropTypes.number,
linkTo: PropTypes.string,
linkToLabel: PropTypes.string,
};
感谢任何帮助。
最佳答案
不确定您到底想在这里实现什么目标。
ref={planetRefs.current[index]}
不会执行任何操作,因为 planetRefs.current
是一个空对象,并且将保持为空对象,因为您没有为其分配任何值它。
planetRefs.current[camelCaseSlug] = useRef();
也不会执行任何操作,因为您不能在不是 react 组件的函数中使用 react hooks。
By the way - why you are assigning the ref value as
camelCaseSlug
but in the render you are trying to access it byindex
?
我认为您应该使用回调引用来代替,以访问渲染的元素:
ref={(ref) => {
planetRefs.current[index] = ref;
}}
注意:请记住使用 forwardRef
包装您的 Planet
组件。
您可以完全删除 planetRefs.current[camelCaseSlug] = useRef();
部分。如果您希望将 planetRefs
中的 refs
保留为 slugs,只需稍微修改回调引用即可:
ref={(ref) => {
const camelCaseSlug = planetaPadre.padre.slug
.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase());
planetRefs.current[camelCaseSlug] = ref;
}}
关于reactjs - useRef() 的钩子(Hook)调用无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/77203275/
问题 我想在可由用户添加的表单中实现输入字段的键/值对。 参见 animated gif on dynamic fields . 此外,我想在用户提交表单并再次显示页面时显示保存的数据。 参见 ani
这个问题已经有答案了: The useState set method is not reflecting a change immediately (19 个回答) 已关闭去年。 问题是,在网页中该
这个问题已经有答案了: The useState set method is not reflecting a change immediately (19 个回答) 已关闭去年。 问题是,在网页中该
我对钩子(Hook)相当陌生,我正在尝试实现一个拖放容器组件,该组件在整个鼠标移动过程中处理 onDragStart、onDrag 和 onDragEnd 函数。我一直在尝试使用钩子(Hook)复制此
有人向我介绍了 CSS 钩子(Hook)这个术语,但我对此不是很清楚。你能给我一些想法吗? 什么是 CSS 钩子(Hook)? 最常见的钩子(Hook)是什么? 使用 CSS 钩子(Hook)的最佳做
文档 ( https://devexpress.github.io/testcafe/documentation/test-api/test-code-structure.html#test-hook
问题是包含 PR_Write() 的 DLL 调用的不是 npsr4.dll,而是 nss3.dll 和 Hook 无法从不存在的库中找到 GetProcAddress()。 我正在尝试创建 Fire
我的 git hook 似乎没有工作。即commit-msg来自 gerrit 的钩子(Hook)。 commit-msg Hook 存在于 /.git/hooks/并具有正确的语法。 最佳答案 确保
用gdb调试不熟悉的程序时,程序执行后经常会意外退出next .发生这种情况时,我通常会设置一个断点,重新运行程序并执行 step而不是 next追踪正在发生的事情。但是,有时很难知道在哪里设置断点。
当我创建一个节点时,我希望它以编程方式创建一些引用刚刚创建的节点的节点。 虽然我只需要更改表单的 form_alter 提交函数来调用自定义函数来创建节点。 检查输出 $form_state 我可以看
我是钩子(Hook)的新手,在学习了对类的 react 之后才来,所以有点迷茫。在下面的代码中,我将 setDog 更改为 Husky,然后它应该告诉 API 调用搜索并获取我的哈士奇图片。但是,尽管
我编写(进程中)钩子(Hook)以防止在本地添加 BAD 标记名称: .hg/hgrc : pretag.badtagname = python:.hg/hgcheck.py:localbadtag
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 7年前关闭。 Improve this qu
如果这个问题之前已经得到解答,我提前表示歉意(对于这篇长文,但我已尽力做到具体)。但是,我找到的答案并不完全令我满意。 我想在我的项目中使用新的令人惊叹的 React Hooks。到目前为止我所做的一
通过阅读一些文字,尤其是关于委托(delegate)的iOS文档,所有协议(protocol)方法都被称为 Hook 自定义委托(delegate)对象需要实现。但是其他一些书,命名为 Hook 作为
我的所有依赖项都位于受密码保护的存储库中。 我有一个要求输入用户名和密码的功能,但它经常困扰我。 有没有办法在依赖检索之前执行它? 在大多数情况下,我在本地 maven/gradle 缓存中拥有所有依
当我尝试运行 git commit -m 'message here' 时出现以下错误。 致命:无法执行 '.git/hooks/prepare-commit-msg':权限被拒绝 当我在我的 ubu
当我尝试运行 git commit -m 'message here' 时出现以下错误。 致命:无法执行 '.git/hooks/prepare-commit-msg':权限被拒绝 当我在我的 ubu
我有一个分支和主干的服务器存储库。分支是所有团队成员的存储库。我正在尝试使用 svn hooks仅在我的分支下的 repo 中,但它似乎无法正常工作。以下是我尝试采取的步骤: checkout my_
我正在尝试为我的模块找到一种在安装时创建 anchor 链接的方法。 我目前的策略是创建一个自定义菜单,类似于主菜单、次菜单等并位于其中。在此菜单中,我希望有一个或多个由我的模块定义的链接。然后我希望
我是一名优秀的程序员,十分优秀!