为什么我的 axios 请求在控制台中打印但没有设置状态

发布于 2025-01-10 23:32:41 字数 765 浏览 0 评论 0原文

我试图在 React 组件中显示数据库中的一些数据,但数据没有保存在状态挂钩中,但请求的响应确实在控制台中打印。

我该如何解决这个问题?

const [error, setError] = useState(null);
const [isLoaded, setIsLoaded] = useState(false);
const [collections, setCollections] = useState([]);

useEffect(() => {
  const getCollections = async () => {
    try {
      const response = await axios.get('http://localhost:4000/api/collections');
      setIsLoaded(true);

      console.log(response); // This prints the response
      setCollections(response);
      console.log(collections); // This prints []

    } catch (error) {
      setError(error);
      setIsLoaded(true);
    }
  }

  getCollections();
}, [])

控制台日志

I'm trying to display some data from my database in my React component but the data isn't getting saved in the state hook, but the request's response does print in the console.

How can I fix this?

const [error, setError] = useState(null);
const [isLoaded, setIsLoaded] = useState(false);
const [collections, setCollections] = useState([]);

useEffect(() => {
  const getCollections = async () => {
    try {
      const response = await axios.get('http://localhost:4000/api/collections');
      setIsLoaded(true);

      console.log(response); // This prints the response
      setCollections(response);
      console.log(collections); // This prints []

    } catch (error) {
      setError(error);
      setIsLoaded(true);
    }
  }

  getCollections();
}, [])

Console logs

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆消瘦 2025-01-17 23:32:41

setCollections 不会立即被 React 执行。新状态应该在下一次渲染时可用。尝试在渲染阶段记录日志:

const [error, setError] = useState(null);
const [isLoaded, setIsLoaded] = useState(false);
const [collections, setCollections] = useState([]);

console.log(collections);

useEffect(() => {
  ...
}, [])

setCollections is not executed immediately by React. The new state should be available on the next render. Try logging during the render phase:

const [error, setError] = useState(null);
const [isLoaded, setIsLoaded] = useState(false);
const [collections, setCollections] = useState([]);

console.log(collections);

useEffect(() => {
  ...
}, [])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文