diff --git a/apps/docs/content/zh-hant/docs/01-app/01-getting-started/02-project-structure.mdx b/apps/docs/content/zh-hant/docs/01-app/01-getting-started/02-project-structure.mdx index 51787ed4..bd5bef74 100644 --- a/apps/docs/content/zh-hant/docs/01-app/01-getting-started/02-project-structure.mdx +++ b/apps/docs/content/zh-hant/docs/01-app/01-getting-started/02-project-structure.mdx @@ -203,8 +203,6 @@ Next.js 對於如何組織和共置專案檔案**沒有強制規範**。但它 height="863" /> - - ### 檔案共置 (Colocation) 在 `app` 目錄中,巢狀資料夾定義了路由結構。每個資料夾代表一個路由區段 (route segment),對應到 URL 路徑中的相應區段。 diff --git a/apps/docs/content/zh-hant/docs/01-app/01-getting-started/10-updating-data.mdx b/apps/docs/content/zh-hant/docs/01-app/01-getting-started/10-updating-data.mdx index a42d3370..e9771cc5 100644 --- a/apps/docs/content/zh-hant/docs/01-app/01-getting-started/10-updating-data.mdx +++ b/apps/docs/content/zh-hant/docs/01-app/01-getting-started/10-updating-data.mdx @@ -1,12 +1,12 @@ --- -source-updated-at: 2025-06-01T01:32:19.000Z -translation-updated-at: 2025-06-01T01:32:19.000Z +source-updated-at: 2025-06-03T15:30:49.000Z +translation-updated-at: 2025-06-05T23:40:14.407Z title: 如何更新資料 nav_title: 更新資料 -description: 學習如何在您的 Next.js 應用程式中更新資料。 +description: 了解如何在您的 Next.js 應用程式中更新資料。 related: title: API 參考 - description: 透過閱讀 API 參考文件,進一步了解本頁提到的功能。 + description: 透過閱讀 API 參考文件深入了解本頁提到的功能。 links: - app/api-reference/functions/revalidatePath - app/api-reference/functions/revalidateTag @@ -17,9 +17,9 @@ related: ## 伺服器函式 -伺服器函式是一種在伺服器端執行的非同步函式。由於它們是透過客戶端發送網路請求來呼叫的,因此本質上是非同步的。當作為 `action` 的一部分被呼叫時,它們也被稱為**伺服器動作 (Server Actions)**。 +伺服器函式是在伺服器端執行的非同步函式。由於是透過客戶端發送網路請求來呼叫,伺服器函式本質上是非同步的。當作為 `action` 的一部分被呼叫時,它們也被稱為**伺服器動作 (Server Actions)**。 -依照慣例,`action` 是一個傳遞給 `startTransition` 的非同步函式。在以下情況下,伺服器函式會自動被 `startTransition` 包裝: +按照慣例,`action` 是傳遞給 `startTransition` 的非同步函式。在以下情況下,伺服器函式會自動被 `startTransition` 包裝: - 透過 `action` 屬性傳遞給 `