我无法访问 DateList 函数中 sessionDates 数组中存储的数据

发布于 2025-01-11 02:28:04 字数 789 浏览 0 评论 0原文

我无法访问 DateList 函数中 sessionDates 数组中存储的数据,

这是我的 index.js 中的代码,包括 api 调用

import React from "react";
import ReactDOM from "react-dom";
const availableDates = [];
const available = [];
const sessionDates = [];

function getDates(e){
  getDate(apiUrl);
}

const getDate = async (apiUrl)=>{
  const res = await fetch(apiUrl)
  try {
    const data = await res.json();
    availableDates.push(data);
    availableDates.map((datee) => {
      datee.map((session) => {
        sessionDates.push(session.date.slice(0, 10));
      });
    });
    return sessionDates;
  }  catch(error) {
    console.log("error", error);
  }
}
window.addEventListener('load', getDates);

function DateList(){
  return <section>{sessionDates[0]}</section>;
}

I can't access the data stored in my sessionDates array in my DateList function

this is the code from my index.js including the api call

import React from "react";
import ReactDOM from "react-dom";
const availableDates = [];
const available = [];
const sessionDates = [];

function getDates(e){
  getDate(apiUrl);
}

const getDate = async (apiUrl)=>{
  const res = await fetch(apiUrl)
  try {
    const data = await res.json();
    availableDates.push(data);
    availableDates.map((datee) => {
      datee.map((session) => {
        sessionDates.push(session.date.slice(0, 10));
      });
    });
    return sessionDates;
  }  catch(error) {
    console.log("error", error);
  }
}
window.addEventListener('load', getDates);

function DateList(){
  return <section>{sessionDates[0]}</section>;
}

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

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

发布评论

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

评论(1

情泪▽动烟 2025-01-18 02:28:04

当您根据 API 调用设置 sessionDates 时,您的代码中没有任何内容会在 sessionDates 更改时提示 DateList 重新呈现。因此,它只会显示 sessionDates 的初始值,其中 sessionDates[0] 未定义。

相反,我建议您使用 useEffect 挂钩触发您的 api 调用并使用 useState

While you are setting sessionDates based on the api call, there is nothing in your code that prompts DateList to re-render when sessionDates changes. As such, it will only display the initial value of sessionDates, for which sessionDates[0] is undefined.

Instead, I recommend that you use the useEffect hook to trigger your api call and implement sessionDates using useState.

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