太多的重新渲染。 React 限制渲染的数量以防止无限循环 - 为什么?

Too many re-renders. React limits the number of renders to prevent an infinite loop - why?

我正在尝试使用 Wikipedia API 对搜索结果进行分类 API。

这是我的 Search 组件:

function Search() {
    const [value, setValue] = useState("");
    const [results, setResults] = useState([]);

    useEffect(() => {
        let timerId = null;
        if (value) {
            timerId = setTimeout(async () => {
                const { data } = await axios.get(
                    "https://en.wikipedia.org/w/api.php",
                    {
                        params: {
                            action: "query",
                            list: "search",
                            origin: "*",
                            format: "json",
                            srsearch: value,
                        },
                    }
                );
                console.log(data);
                setResults(data.query.search);
            }, 400  );
        }
        return () => {
            clearTimeout(timerId);
        };
    }, [value]);
    return (
        <>
            <form className="ui form">
                <input
                    type="text"
                    placeholder="Search Wikipedia..."
                    value={value}
                    onChange={(e) => setValue(e.target.value)}
                ></input>
            </form>
            <List results={results} />
        </>
    );
}

有一种增量搜索解释了 setTimeout。

这是我的 List 组件:

const List = ({ results }) => {
    const [category, setCategory] = useState("");

    const renderedList = results.map((item) => {
        if (item.snippet.includes("film") || item.snippet.includes("movie")) {
            console.log("movie", item);
        }
        if (
            item.snippet.includes("band") ||
            item.snippet.includes("musician")
        ) {
            setCategory("music");
        }
        return (
            <div className="ui segment">
                <h2>
                    <a
                        href={"https://en.wikipedia.org?curid=" + item.pageid}
                        className="header"
                        target="_blank"
                        rel="noopener noreferrer"
                    >
                        {item.title}
                    </a>
                </h2>
                <p dangerouslySetInnerHTML={{ __html: item.snippet }}></p>
                <p>{category}</p>
            </div>
        );
    });

我尝试将超时设置得更高,以便在键入完整搜索词之前不会进行任何活动的重新呈现,但这会得到相同的结果。 API 也只有 returns 一个包含 10 个结果的数组,因此它没有处理大量数据。

App.js 只真正包含 List 所以我不明白为什么那里会有任何问题。

感谢任何帮助 - 提前致谢!

所以正如我们在评论中讨论的那样,你提到你是 React 的初学者,没有必要调用带有设置超时的 axios 因为 axios returns 一个承诺,然后一旦承诺被解决,你更新您的状态,更新您的状态将重新呈现您的组件。