You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/01-app/01-getting-started/07-updating-data.mdx
+32-28
Original file line number
Diff line number
Diff line change
@@ -15,24 +15,34 @@ You can update data in Next.js using React's [Server Functions](https://react.de
15
15
16
16
## Creating Server Functions
17
17
18
-
A Server Function can be defined by using the [`use server`](https://react.dev/reference/rsc/use-server) directive. You can place the directive at the top of an **asynchronous** function to mark the function as a Server Function, or at the top of a separate file to mark all exports of that file. We recommend using a separate file in most instances.
18
+
A Server Function can be defined by using the [`use server`](https://react.dev/reference/rsc/use-server) directive. You can place the directive in an **asynchronous** function to mark the function as a Server Function.
> You can also add `use server` at the top of a file to mark all exports of that file as Server Functions. However, this can lead to functions being marked as Server Functions when they are not intended to be used as such. We recommend scoping `use server` to the function level instead as shown above.
45
+
36
46
### Server Components
37
47
38
48
Server Functions can be inlined in Server Components by adding the `"use server"` directive to the top of the function body:
@@ -65,18 +75,18 @@ export default function Page() {
65
75
66
76
### Client Components
67
77
68
-
It's not possible to define Server Functions in Client Components. However, you can invoke them in Client Components by importing them from a file that has the `"use server"` directive at the top of it:
78
+
It's not possible to define Server Functions in Client Components. However, you can invoke them in Client Components by placing the functions in a separate file and importing them:
@@ -153,9 +162,8 @@ export async function createPost(formData: FormData) {
153
162
```
154
163
155
164
```js filename="app/actions.js" switcher
156
-
'use server'
157
-
158
165
exportasyncfunctioncreatePost(formData) {
166
+
'use server'
159
167
consttitle=formData.get('title')
160
168
constcontent=formData.get('content')
161
169
@@ -265,11 +273,10 @@ export function Button() {
265
273
After performing an update, you can revalidate the Next.js cache and show the updated data by calling [`revalidatePath`](/docs/app/api-reference/functions/revalidatePath) or [`revalidateTag`](/docs/app/api-reference/functions/revalidateTag) within the Server Function:
@@ -278,11 +285,10 @@ export async function createPost(formData: FormData) {
278
285
```
279
286
280
287
```js filename="app/actions.js" switcher
281
-
'use server'
282
-
283
288
import { revalidatePath } from'next/cache'
284
289
285
290
exportasyncfunctioncreatePost(formData) {
291
+
'use server'
286
292
// Update data
287
293
// ...
288
294
revalidatePath('/posts')
@@ -294,11 +300,10 @@ export async function createPost(formData) {
294
300
You may want to redirect the user to a different page after performing an update. You can do this by calling [`redirect`](/docs/app/api-reference/functions/redirect) within the Server Function:
Copy file name to clipboardexpand all lines: docs/01-app/01-getting-started/08-error-handling.mdx
+2-4
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,8 @@ Expected errors are those that can occur during the normal operation of the appl
23
23
You can use the [`useActionState`](https://react.dev/reference/react/useActionState) hook to manage the state of [Server Functions](https://react.dev/reference/rsc/server-functions) and handle expected errors. Avoid using `try`/`catch` blocks for expected errors. Instead, you can model expected errors as return values, not as thrown exceptions.
Copy file name to clipboardexpand all lines: docs/01-app/03-building-your-application/01-routing/05-error-handling.mdx
+2-4
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,10 @@ Expected errors are those that can occur during the normal operation of the appl
20
20
Use the `useActionState` hook to manage the state of Server Actions, including handling errors. This approach avoids `try`/`catch` blocks for expected errors, which should be modeled as return values rather than thrown exceptions.
Copy file name to clipboardexpand all lines: docs/01-app/03-building-your-application/01-routing/07-redirecting.mdx
+4-8
Original file line number
Diff line number
Diff line change
@@ -42,12 +42,11 @@ The `redirect` function allows you to redirect the user to another URL. You can
42
42
`redirect` is often used after a mutation or event. For example, creating a post:
43
43
44
44
```ts filename="app/actions.ts" switcher
45
-
'use server'
46
-
47
45
import { redirect } from'next/navigation'
48
46
import { revalidatePath } from'next/cache'
49
47
50
48
exportasyncfunction createPost(id:string) {
49
+
'use server'
51
50
try {
52
51
// Call database
53
52
} catch (error) {
@@ -60,12 +59,11 @@ export async function createPost(id: string) {
60
59
```
61
60
62
61
```js filename="app/actions.js" switcher
63
-
'use server'
64
-
65
62
import { redirect } from'next/navigation'
66
63
import { revalidatePath } from'next/cache'
67
64
68
65
exportasyncfunctioncreatePost(id) {
66
+
'use server'
69
67
try {
70
68
// Call database
71
69
} catch (error) {
@@ -94,12 +92,11 @@ The `permanentRedirect` function allows you to **permanently** redirect the user
94
92
`permanentRedirect` is often used after a mutation or event that changes an entity's canonical URL, such as updating a user's profile URL after they change their username:
0 commit comments