结合使用 useEffect 和 Axios 获取 API 数据返回 null - 如何处理?

IT技术 reactjs
2021-05-04 13:25:03

在加载实际对象之前,使用 Axios 和 useEffect 获取数据会导致 null。

不幸的是,在实际对象不为空之前,我无法使用对象解构。

我被迫使用钩子来检查对象是否为空。

例如,我想创建多个函数并将我的代码拆分为单独的函数以提高可读性。

这是我的 HTTP 请求钩子:

import { useState, useEffect } from 'react';

import axios from 'axios';

export const useHttp = (url, dependencies) => {
    const [isLoading, setIsLoading] = useState(false);
    const [fetchedData, setFetchedData] = useState(null);

    useEffect(() => {
        setIsLoading(true);

        axios
            .get(url)
            .then(response => {
                setIsLoading(false);
                setFetchedData(response.data);
            })
            .catch(error => {
                console.error('Oops!', error);
                setIsLoading(false);
            });
    }, dependencies);

    return [isLoading, fetchedData];
};

其次是我的页面组件:

import React from 'react';

import { PAGE_ABOUT, API_URL } from 'constants/import';

import Header from './sections/Header';
import Main from './sections/Main';
import Aside from './sections/Aside';

import { useHttp } from 'hooks/http';

const About = () => {
    const [isLoading, about] = useHttp(PAGE_ABOUT, []);

    if (!isLoading && about) {
        return (
            <section className="about">
                <div className="row">
                    <Header
                        featuredImage={API_URL + about.page_featured_image.path}
                        authorImage={API_URL + about.page_author_image.path}
                        authorImageMeta={about.page_author_image.meta.title}
                        title={about.about_title}
                        subtitle={about.about_subtitle}
                    />

                    <Main
                        title={about.page_title}
                        content={about.page_content}
                    />

                    <Aside
                        title={about.about_title}
                        content={about.about_content}
                    />
                </div>
            </section>
        );
    }
};

export default React.memo(About);

在实际返回对象之前,我无法嵌套函数的实际问题。

有没有办法在不检查的情况下获取数据?或者更清洁的解决方案会有所帮助。

我想使用多个组件来拆分代码。

任何意见或建议将不胜感激。

3个回答

您所问的内容对用户界面不利。您不希望在获取数据时阻止 UI 呈现。所以通常的做法是显示一个加载微调器或者(如果你指望请求很快)在它弹出之前什么都不渲染。

所以你会有类似的东西:

const About = () => {
    const [isLoading, about] = useHttp(PAGE_ABOUT, []);

    if (isLoading) return null; // or <Loading />

    return (
       <section className="about">
            <div className="row">
                <Header
                    featuredImage={API_URL + about.page_featured_image.path}
                    authorImage={API_URL + about.page_author_image.path}
                    authorImageMeta={about.page_author_image.meta.title}
                    title={about.about_title}
                    subtitle={about.about_subtitle}
                />

                <Main
                  title={about.page_title}
                  content={about.page_content}
                />

                <Aside
                  title={about.about_title}
                  content={about.about_content}
                />
            </div>
        </section>
    );
};

如果您的 api 没有对错误的保护,并且您害怕为null未定义,则可以使用错误边界组件包装组件并显示默认错误。但这取决于你是否在你的应用程序中使用它们。

错误边界是 React 组件,它在其子组件树中的任何位置捕获 JavaScript 错误,记录这些错误,并显示回退 UI 而不是崩溃的组件树。错误边界在渲染过程中、生命周期方法中以及在它们下面的整个树的构造函数中捕获错误。

如果我们的About组件中的条件为 false,则您不会返回任何内容,因此如果isLoading!about添加一个案例 您可以添加一个加载程序:

const About = () => {
    const [isLoading, about] = useHttp(PAGE_ABOUT, []);

    let conditionalComponent =  null;

    if (!isLoading && about) {
        conditionalComponent= (
            <section className="about">
                <div className="row">
                    <Header
                        featuredImage={API_URL + about.page_featured_image.path}
                        authorImage={API_URL + about.page_author_image.path}
                        authorImageMeta={about.page_author_image.meta.title}
                        title={about.about_title}
                        subtitle={about.about_subtitle}
                    />

                    <Main
                        title={about.page_title}
                        content={about.page_content}
                    />

                    <Aside
                        title={about.about_title}
                        content={about.about_content}
                    />
                </div>
            </section>
        );
    }
    return conditionalComponent

};

我知道你想摆脱条件 if (!isLoading && about) {

您可以通过多种方式实现:

1)您可以Conditional自己创建组件。这个组件应该接收childrenprop 作为一个函数,并且应该将其他 props 应用到这个函数:

function Conditional({ children, ...other }) {
  if (Object.entries(other).some(([key, value]) => !value)) {
    return "empty"; // null or some `<Loading />` component
  }
  return children(other);
}

我也做了一个小演示https://codesandbox.io/s/upbeat-cori-ngenk

它可以帮助您仅创建一个条件位置并在数十个组件中重用它:)

2)你可以使用一些库,它建立在 React.lazy 和 React.Suspense 之上(但它不能在服务器端工作)。例如https://dev.to/charlesstover/react-suspense-with-the-fetch-api-374j和一个库:https : //github.com/CharlesStover/fetch-suspense