Next 系列之 Data Fetching - Patterns and Best Practices(四)

React 

Patterns and Best Practices 模式和最佳实践 There are a few recommended patterns and best practices for fetching data in React and Next.js. This page will go

Next 系列之 Data Fetching - Server Actions and Mutations(四)

React 

Server Actions and Mutations 服务器操作和数据变更 Server Actions are asynchronous functions that are executed on the server. They can be used in Server and Clie

Next 系列之 Data Fetching - Fetching(四)

React 

Fetching 数据获取 Rendering converts the code you write into user interfaces. React and Next.js allow you to create hybrid web applications where parts of

Next 系列之 Routing - Route Handlers(三)

React 

Route Handlers 路由处理程序 Route Handlers allow you to create custom request handlers for a given route using the Web Request and Response APIs. 路由处理程序允许您使

Next 系列之 Routing - Intercepting Routes(三)

React 

Intercepting Routes 拦截路由 Intercepting routes allows you to load a route from another part of your application within the current layout. This routing

Next 系列之 Routing - Parallel Routes(三)

React 

Parallel Routes 并行路由 Parallel Routes allows you to simultaneously or conditionally render one or more pages within the same layout. They are useful fo

Next 系列之 Routing - Dynamic Routes(三)

React 

Dynamic Routes 动态路由 When you don't know the exact segment names ahead of time and want to create routes from dynamic data, you can use Dynamic Segment

Next 系列之 Routing - Project Organization(三)

React 

Project Organization and File Colocation 项目组织和文件并置 Apart from routing folder and file conventions, Next.js is unopinionated about how you organize and

Next 系列之 Routing - Route Groups(三)

React 

Route Groups 路由组 In the app directory, nested folders are normally mapped to URL paths. However, you can mark a folder as a Route Group to prevent the

Next 系列之 Routing - Redirecting(三)

React 

Redirecting 重定向 There are a few ways you can handle redirects in Next.js. This page will go through each available option, use cases, and how to manag