import {API_URL} from '../configReact' export async function getHomeData() { // 数据获取逻辑 // 在这里进行异步数据获取 const res = await fetch(API_URL+'/api/home/getCateList'); const res2 = await fetch(API_URL+'/api/home/getHomepageList'); const [cateList, homepageList] = await Promise.all([ res.json(), res2.json() ]); // 将数据作为 props 返回 return { props: { cateList ,homepageList} }; }