list对象猛肝,后面那什么玩意

This commit is contained in:
MineCreeper86 2020-08-08 12:49:08 +08:00
parent 8d9f1d89b0
commit 51408fde08

View File

@ -30,9 +30,24 @@
| 字段 | 类型 | 内容 | 备注 |
| --------- | ----- | ---------------- | --------------------------------------------------------------------------- |
| list | obj | 文集概览 | |
| articles | array | 文集内的专栏列表 | |
| articles | array | 文集内的文章列表 | |
| author | obj | 文集作者 | |
| last | obj | | 作用尚不明确<br />结构与data.articles[]中相似 |
| attention | bool | 是否关注文集作者 | false未关注<br />true已关注<br />需要登录(SESSDATA) <br />未登录为false |
`data`中的`list`对象:
`data`中的`list`对象:
| 字段 | 类型 | 内容 | 备注 |
| -------------- | ---- | ------------ | ------------------------ |
| id | num | 文集ID | |
| mid | num | 文集作者UID | |
| name | str | 文集作者昵称 | |
| image_url | str | 文集封面url | |
| update_time | num | 更新时间 | 秒时间戳 |
| ctime | num | 创建时间 | 秒时间戳 |
| publish_time | num | 发布时间 | 秒时间戳 |
| summary | str | 文集简介 | |
| words | num | 文集字数 | |
| read | num | 文集阅读量 | |
| articles_count | num | 文章数量 | |
| state | num | 0 | 作用尚不明确 |