-
Notifications
You must be signed in to change notification settings - Fork 77
nForum API Meta Article
xw2423 edited this page Mar 11, 2013
·
1 revision
属性 | 类型 | 说明 | 存在条件 |
---|---|---|---|
id | int | 文章id | |
group_id | int | 该文章所属主题的id | |
reply_id | int | 该文章回复文章的id | |
flag | string | 文章标记 分别是m g ; b u o 8 | |
position | int | 文章所在主题的位置或文章在默写浏览模式下的位置 | /board/:name的非主题模式下为访问此文章的id,在/threads/:board/:id中为所在主题中的位置,其余为空 |
is_top | boolean | 文章是否置顶 | |
is_subject | boolean | 该文章是否是主题帖 | |
has_attachment | boolean | 文章是否有附件 | |
is_admin | boolean | 当前登陆用户是否对文章有管理权限 包括编辑,删除,修改附件 | |
title | string | 文章标题 | |
user | user | 文章发表用户,这是一个用户元数据 | |
post_time | int | 文章发表时间,unixtimestamp | |
board_name | string | 所属版面名称 | |
content | string | 文章内容 | 在/board/:name的文章列表和/search/(article|threads)中不存在此属性 |
attachment | attachment | 文章附件列表,这是一个附件元数据 | 在/board/:name的文章列表和/search/(article|threads)中不存在此属性 |
previous_id | int | 该文章的前一篇文章id | 只存在于/article/:board/:id中 |
next_id | int | 该文章的后一篇文章id | 只存在于/article/:board/:id中 |
threads_previous_id | int | 该文章同主题前一篇文章id | 只存在于/article/:board/:id中 |
threads_next_id | int | 该文章同主题后一篇文章id | 只存在于/article/:board/:id中 |
reply_count | int | 该主题回复文章数 | 只存在于/board/:name,/threads/:board/:id和/search/threads中 |
last_reply_user_id | string | 该文章最后回复者的id | 只存在于/board/:name,/threads/:board/:id和/search/threads中 |
last_reply_time | int | 该文章最后回复的时间 unxitmestamp | 只存在于/board/:name,/threads/:board/:id和/search/threads中 |