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
+28-32
Original file line number
Diff line number
Diff line change
@@ -15,33 +15,23 @@ 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 in an **asynchronous** function to mark the function as a Server Function.
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.
> 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.
33
+
exportasyncfunctiondeletePost(formData) {}
34
+
```
45
35
46
36
### Server Components
47
37
@@ -75,18 +65,18 @@ export default function Page() {
75
65
76
66
### Client Components
77
67
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:
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:
@@ -162,8 +153,9 @@ export async function createPost(formData: FormData) {
162
153
```
163
154
164
155
```js filename="app/actions.js" switcher
156
+
'use server'
157
+
165
158
exportasyncfunctioncreatePost(formData) {
166
-
'use server'
167
159
consttitle=formData.get('title')
168
160
constcontent=formData.get('content')
169
161
@@ -273,10 +265,11 @@ export function Button() {
273
265
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:
@@ -285,10 +278,11 @@ export async function createPost(formData: FormData) {
285
278
```
286
279
287
280
```js filename="app/actions.js" switcher
281
+
'use server'
282
+
288
283
import { revalidatePath } from'next/cache'
289
284
290
285
exportasyncfunctioncreatePost(formData) {
291
-
'use server'
292
286
// Update data
293
287
// ...
294
288
revalidatePath('/posts')
@@ -300,10 +294,11 @@ export async function createPost(formData) {
300
294
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
+4-2
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,9 @@ 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
+4-2
Original file line number
Diff line number
Diff line change
@@ -20,10 +20,11 @@ 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
+8-4
Original file line number
Diff line number
Diff line change
@@ -42,11 +42,12 @@ 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
+
45
47
import { redirect } from'next/navigation'
46
48
import { revalidatePath } from'next/cache'
47
49
48
50
exportasyncfunction createPost(id:string) {
49
-
'use server'
50
51
try {
51
52
// Call database
52
53
} catch (error) {
@@ -59,11 +60,12 @@ export async function createPost(id: string) {
59
60
```
60
61
61
62
```js filename="app/actions.js" switcher
63
+
'use server'
64
+
62
65
import { redirect } from'next/navigation'
63
66
import { revalidatePath } from'next/cache'
64
67
65
68
exportasyncfunctioncreatePost(id) {
66
-
'use server'
67
69
try {
68
70
// Call database
69
71
} catch (error) {
@@ -92,11 +94,12 @@ The `permanentRedirect` function allows you to **permanently** redirect the user
92
94
`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