- 数据
- 栏目列表_ChannelListGET
- 栏目对象_ChannelGET
- 栏目对象ByAlias_ChannelGET
- 文章列表_ArticleListGET
- 文章分页_ArticlePageGET
- 文章对象_ArticleGET
- 上一篇文章_ArticlePrevGET
- 下一篇文章_ArticleNextGET
- 全文检索文章分页_EsArticlePageGET
- 全文检索文章列表_EsArticleListGET
- 区块项列表_BlockItemListGET
- 字典列表_DictListGET
- 模型列表_ModelListGET
- 模型对象_ModelGET
- Tag列表_TagListGET
- Tag分页_TagPageGET
- 获取Tag对象GET
- 表单列表_FormListGET
- 表单分页_FormPageGET
- 获取表单对象GET
- 站点列表_SiteListGET
- 站点对象_SiteGET
- 投票列表_VoteListGET
- 投票分页_VotePageGET
- 投票对象_VoteGET
- 留言列表_MessageBoardListGET
- 留言分页_MessageBoardPageGET
- 获取留言对象GET
- 留言类型列表_MessageBoardTypeListGET
- 调查问卷列表_SurveyListGET
- 调查问卷分页_SurveyPageGET
- 调查问卷对象_SurveyGET
- 文章排行榜列表_LeaderBoardListGET
- 文章排行榜分页_LeaderBoardPageGET
- 内容
- 用户
- 系统
- 其它
获取文章统计数据
GET
/api/article/buffer/{id}
文章接口
请求参数
Path 参数
id
integer <int64>
文章ID
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://demo.ujcms.com/api/article/buffer/'
返回响应
🟢200成功
*/*
Body
文章缓冲实体类
id
integer <int64>
文章ID
comments
integer <int32>
评论次数
downloads
integer <int32>
下载次数
favorites
integer <int32>
收藏次数
ups
integer <int32>
顶
downs
integer <int32>
踩
views
integer <int64>
浏览次数
dayViews
integer <int32>
日浏览次数
weekViews
integer <int32>
周浏览次数
monthViews
integer <int32>
月浏览次数
quarterViews
integer <int32>
季浏览次数
yearViews
integer <int64>
年浏览次数
示例
{
"id": 0,
"comments": 0,
"downloads": 0,
"favorites": 0,
"ups": 0,
"downs": 0,
"views": 0,
"dayViews": 0,
"weekViews": 0,
"monthViews": 0,
"quarterViews": 0,
"yearViews": 0
}
修改于 2025-03-04 10:44:02