Skip to content

Commit

Permalink
i18n(zh-cn): Update routing.mdx (#8951)
Browse files Browse the repository at this point in the history
Co-authored-by: liruifengv <[email protected]>
  • Loading branch information
Nin3lee and liruifengv authored Jul 30, 2024
1 parent cc273be commit 950faab
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/content/docs/zh-cn/guides/routing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ interface Page<T = any> {
total: number;
/** 当前页码, 从 1 开始 */
currentPage: number;
/** 每个页面的项数(默认为 25) */
/** 每个页面的项数(默认为 10) */
size: number;
/** 最后一页的序号 */
lastPage: number;
Expand All @@ -422,10 +422,16 @@ interface Page<T = any> {
prev: string | undefined;
/** 下一页的链接(如果有) */
next: string | undefined;
/** 第一页的链接 (如果当前页面不是第一页) */
first: string | undefined;
/** 最后一页的链接 (如果当前页面不是最后一页) */
last: string | undefined;
};
}
```

<ReadMore>了解更多关于 [page 分页参数](/zh-cn/reference/api-reference/#page-分页参数) 的内容。</ReadMore>

### 嵌套分页

分页的一个更高级的用例是**嵌套分页**。当分页与其他动态路由参数相结合时,你可以使用嵌套式分页和一些属性或标签来将分页进行分类。
Expand Down

0 comments on commit 950faab

Please sign in to comment.