"use client"; import React, { useEffect, useState } from "react"; import Product from "@/components/Product"; export default function Feed() { const [products, setProducts] = useState([]); const [loading, setLoading] = useState(true); const [error, setError] = useState(null); useEffect(() => { const fetchProducts = async () => { try { const res = await fetch("/api/products"); if (!res.ok) { throw new Error("获取商品列表失败"); } const data = await res.json(); setProducts(data); } catch (err) { setError(err.message); } finally { setLoading(false); } }; fetchProducts(); }, []); if (loading) return
加载中...
; if (error) return
错误: {error}
; return (
{products.map((product) => ( ))}
); }