docs: refine docs for postFinder.listByOwner (#391)

补充根据创建者用户名和分页参数获取文章列表。

```release-note
None
```
main
困困鱼 4 months ago committed by GitHub
parent 8ee81e718b
commit 1add3ef3dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -216,6 +216,36 @@ postFinder.listByTag(page, size, tag);
</ul>
```
## listByOwner(page,size,owner)
```js
postFinder.listByOwner(page, size, owner);
```
### 描述
根据创建者用户名和分页参数获取文章列表。
### 参数
1. `page:int` - 分页页码,从 1 开始
2. `size:int` - 分页条数
3. `owner:string` - 创建者用户名 `name`
### 返回值
[#ListResult<ListedPostVo\>](#listresultlistedpostvo)
### 示例
```html
<ul th:with="posts = ${postFinder.listByOwner(1,10,'admin')}">
<li th:each="post : ${posts.items}">
<a th:href="@{${post.status.permalink}}" th:text="${post.spec.title}"></a>
</li>
</ul>
```
## archives(page,size)
```js

@ -215,6 +215,35 @@ postFinder.listByTag(page, size, tag);
</li>
</ul>
```
## listByOwner(page,size,owner)
```js
postFinder.listByOwner(page, size, owner);
```
### 描述
根据创建者用户名和分页参数获取文章列表。
### 参数
1. `page:int` - 分页页码,从 1 开始
2. `size:int` - 分页条数
3. `owner:string` - 创建者用户名 `name`
### 返回值
[#ListResult<ListedPostVo\>](#listresultlistedpostvo)
### 示例
```html
<ul th:with="posts = ${postFinder.listByOwner(1,10,'admin')}">
<li th:each="post : ${posts.items}">
<a th:href="@{${post.status.permalink}}" th:text="${post.spec.title}"></a>
</li>
</ul>
```
## archives(page,size)

Loading…
Cancel
Save