我是React的新手开发人员,这个特定代码段有问题。
问题:
我故意选择使用useRef而不是useState,因为在用户添加或编辑所需链接之后,我想将keyRef发送到NoSQL数据库。而当我使用useState()时,却给我带来了过时的状态问题,其中包含所有链接的数组没有不断更新。
有什么建议吗?请谢谢!
CodeSandbox链接:https://codesandbox.io/s/react-hooks-counter-demo-forked-0bjdy?file=/src/index.js
App.js
import React, { useState, useRef } from "react";
import ReactDOM from "react-dom";
import { links } from './links';
import "./styles.css";
function App() {
const [loaded, setLoaded] = useState(false);
const formRef = useRef([]);
const keyRef = useRef([]);
if (!loaded) {
keyRef.current = links;
links.forEach(link => RenderLinks(link.id));
setLoaded(true);
}
function RenderLinks(id) {
const formLength = formRef.current.length;
if (id === null)
formRef.current = [ ...formRef.current, <AddLink key={formLength} id={formLength} /> ];
if (id && !formRef.current.find(form => form.props.id === id))
formRef.current = [ ...formRef.current, <AddLink key={formLength} id={formLength} /> ];
}
function AddLink(props) {
const id = props.id;
const value = keyRef.current[id] ? keyRef.current[id].link : '';
const [input, setInput] = useState(value);
keyRef.current = [
...keyRef.current,
{
id: id,
link: '',
}
];
return <input onChange={e => setInput(e.target.value)} value={input} />
}
return (
<div>
<button onClick={() => RenderLinks(null)}>add</button>
{formRef.current ? formRef.current.map(child => child) : null}
</div>
)
}
links.js又名虚拟数据
export const links = [
{
id: 0,
link: "www.zero.com"
},
{
id: 1,
link: "www.one.com"
},
{
id: 2,
link: "www.two.com"
},
{
id: 3,
link: "www.three.com"
},
{
id: 4,
link: "www.four.com"
},
{
id: 5,
link: "www.five.com"
},
{
id: 6,
link: "www.six.com"
},
{
id: 7,
link: "www.seven.com"
}
];
答案 0 :(得分:1)
请记住,useRef的内容更改时不会通知您。更改.current属性不会导致重新渲染
因此,即使正在对其进行更新,您也永远不会得到显示已添加的第7、8等链接的重新渲染。
我认为您最好使用useState()
挂钩来链接并呈现链接。也许有一个单独的问题可以确定您所看到的过时问题。
答案 1 :(得分:0)
您可以使用状态变量来重新渲染所有状态组件,我尝试过并成功完成的一个简单方法是:
const [, forceUpdate] = useReducer((x) => x + 1, 0)
你可以在添加链接后调用 forceUpdate() ,它将起到 useState() 的作用