製作 loading 元件
可以在專案根目錄建立 loading.jsx
檔案,
1 2 3 4 5 6 7 8
| export default function Loading() { return ( <main className="text-canter"> <h2 className="text-primary">Loading...</h2> <p>Hopefully not too long</p> </main> ) }
|
這樣當其他頁面花時間有載入資料的行為時,就會呈現此 loading 元件
搭配 suspense 元件
當只希望頁面的部分區塊呈現 loading 效果時,可以搭配 suspense 元件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| function SlowComponent() { const data = fetchData(); return <div>資料載入完成:{data}</div>; }
export default function Home() { return ( <div> <h1>歡迎來到首頁</h1> <Suspense fallback={<div>載入中...</div>}> <SlowComponent /> </Suspense> </div> ); }
|
如上,只有被 Suspense 包住的區塊會呈現 loading 元件 <div>載入中...</div>
。