首頁 > web前端 > js教程 > 主體

如何將 React useEffect 載入函數限制為單一呼叫?

Susan Sarandon
發布: 2024-10-17 22:00:30
原創
826 人瀏覽過

How to Restrict a React useEffect Loading Function to a Single Call?

How to Call a Loading Function Only Once with React useEffect

The useEffect React hook is designed to run the provided function on every change, which can lead to performance issues. However, there are situations where we only want to call the function once, particularly when performing an initial loading process.

Problem:

How can we use the useEffect hook to call an initialization function only on the initial render, preventing it from being invoked on subsequent changes? Suppose we have the following class component:

<code class="javascript">class MyComponent extends React.PureComponent {
    componentDidMount() {
        loadDataOnlyOnce();
    }
    render() { ... }
}</code>
登入後複製

Solution:

Using hooks, we can achieve the desired behavior as follows:

<code class="javascript">function MyComponent() {
    useEffect(() =&gt; {
        loadDataOnlyOnce(); // This will fire on every change :(
    }, [...???]);
    return (...);
}</code>
登入後複製

Answer:

To restrict the function call to the initial render, we can provide an empty array as the second argument to useEffect:

<code class="javascript">function MyComponent() {
  useEffect(() =&gt; {
    loadDataOnlyOnce();
  }, []);

  return &lt;div&gt; {/* ... */} &lt;/div&gt;;
}</code>
登入後複製

By providing an empty array, we instruct useEffect to execute the function only after the initial render. This eliminates the issue of the function being called on every change, ensuring that the loading process is executed only once.

以上是如何將 React useEffect 載入函數限制為單一呼叫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!