有关此资源的方法列表,请参阅本页结尾。
资源表示
出版物。一个出版物对应一个章节。
{
"id": integer,
"node_id": integer,
"bundle_id": integer,
"title": string,
"summary": string,
"content": string,
"cover": string,
"sort": integer,
"author": User,
"translator": User,
"category": Category,
"created_at": string,
"updated_at": string,
"nodes": [
Node
],
"pub_type": integer,
"comments_count": integer,
"likes_count": integer,
"current_user_has_liked": boolean,
"template": string,
"covers": {
"path": string,
"sizes": {
"cover_sm": {
"width": integer,
"height": integer,
"path": string
}
}
},
"bundle_is_multi_chapter": boolean,
"is_binding_publish": boolean,
"is_all_chapters_publish": boolean,
"comments": [
Comment
],
"bundle_original": integer,
"bundle_copy_creator": integer
}
Property name | Value | Description | Notes |
---|---|---|---|
id | integer | 出版物id | Primary Key |
node_id | integer | 章节ID | |
bundle_id | integer | Bundle ID | |
author | nested object | 出版物作者 | User.Profile |
translator | nested object | 翻译者 | User.Profile |
category | nested object | 出版物分类 | Dimzou.Category |
title | string | 出版物标题 | 纯文本 |
summary | string | 出版物摘要 | HTML 文本 |
content | string | 出版物正文 | HTML 文本 |
cover | string | 出版物封面图片url | |
covers | nested object | 出版物封面图片缩略图 | |
covers.path | string | 出版物封面图片url | 跟 cover相同 |
covers.sizes | nested object | 出版物封面图片缩略图尺寸 | |
covers.sizes.{size}.path | string | 出版物封面图片缩略图url | |
pub_type | enum | 出版物类型 | Publication.PubType |
sort | integer | 该出版物对应的章节的序号 | 封面章节为0 |
created_at | string | 创建时间 | |
updated_at | string | 最近更新时间 | |
nodes[] | list | 该书下的所有章节简要数据 | Dimzou.Node |
comment_count | integer | 评论数量 | |
likes_count | integer | 点赞数量 | |
current_user_has_liked | boolean | 当前用户是否有点赞过该出版物 | |
status | enum | 对应的章节状态 | Node.Status |
template | string | 模版 | I – V |
bundle_is_multi_chapter | boolean | 对应的书是否为多章节 | |
is_binding_publish | boolean | 是否有多个章节一起出版 | |
is_all_chapters_publish | boolean | 是否所有章节一起出版 | |
comments[] | list | 出版物的评论列表 | Activity.Comment |
bundle_original | integer | 对应的bundle的 正本bundle id | |
bundle_copy_creator | integer | 对应的bundle的副本创建人 | User.Profile |
Methods
get
返回指定的出版物(Publication)。
history
返回指定出版物的其他历史版本。
related
返回指定出版物的相关出版物。