{域名地址}/api/archive/detail
说明:{域名地址}
需要替换成你的域名地址,如 /api/archive/detail
GET
字段名 |
类型 |
必填 |
说明 |
id |
int |
是 |
文档ID,如果传了filename,可以不用传ID |
filename |
string |
否 |
文档URL别名,文档ID、filename 二选一 |
字段名 |
类型 |
说明 |
code |
int |
错误码 |
msg |
string |
错误原因说明 |
data |
object |
结果内容 |
字段名 |
类型 |
说明 |
id |
int |
文档ID |
title |
string |
文档标题 |
seo_title |
string |
文档SEO标题 |
url_token |
string |
文档URL别名 |
keywords |
string |
文档关键词 |
description |
string |
文档简介 |
module_id |
int |
文档模型ID |
category_id |
int |
文档分类ID |
views |
int |
文档浏览量 |
comment_count |
int |
文档评论量 |
images |
string[] |
文档组图 |
logo |
string |
文档Logo |
thumb |
string |
文档缩略图 |
flag |
string |
文档推荐属性,头条[h]推荐[c]幻灯[f]特荐[a]滚动[s]加粗[h]图片[p]跳转[j] |
canonical_url |
string |
canonical url |
fixed_link |
string |
文档固定链接 |
created_time |
int |
文档发布时间戳 |
updated_time |
int |
文档更新时间戳 |
status |
int |
文档显示状态 |
user_id |
int |
用户ID |
price |
int |
价格,单位分 |
stock |
int |
库存量 |
user_id |
int |
用户ID |
category |
object |
文档分类信息 |
data |
object |
文档内容信息 |
extra |
object |
文档其他字段信息 |
字段名 |
类型 |
说明 |
id |
int |
分类ID |
parent_id |
int |
分类上级ID |
title |
string |
分类名称 |
seo_title |
string |
分类SEO标题 |
url_token |
string |
分类URL别名 |
keywords |
string |
分类关键词 |
description |
string |
分类简介 |
module_id |
int |
模型ID |
content |
string |
分类内容详情 |
type |
int |
分类属性值,1 分类,3 单页面 |
sort |
int |
分类排序值 |
images |
string[] |
分类Banner图 |
logo |
string |
分类缩略图 |
thumb |
string |
分类缩略图 |
created_time |
int |
文档发布时间戳 |
updated_time |
int |
文档更新时间戳 |
status |
int |
文档显示状态 |
字段名 |
类型 |
说明 |
id |
int |
分类ID |
content |
string |
文档内容详情 |
extra 根据模型设置的字段显示,字段结构为 key => item:
key 表单字段调用名,item 为内容:
字段名 |
类型 |
说明 |
name |
string |
字段名称 |
value |
string |
填写的值 |
default |
string |
默认值 |
{
"code": 0,
"data": {
"id": 1,
"created_time": 1607308159,
"updated_time": 1662717106,
"title": "欢迎使用AnqiCMS",
"seo_title": "",
"url_token": "anqicms",
"keywords": "",
"description": "欢迎使用AnqiCMS",
"module_id": 1,
"category_id": 1,
"views": 1338,
"comment_count": 0,
"images": null,
"status": 1,
"canonical_url": "",
"fixed_link": "",
"flag": "",
"user_id": 0,
"price": 0,
"stock": 9999999,
"category": {
"id": 1,
"created_time": 1607308159,
"updated_time": 1657761249,
"title": "AnqiCMS帮助",
"seo_title": "",
"keywords": "",
"url_token": "goruning",
"description": "",
"content": "<p>欢迎使用AnqiCMS</p>",
"module_id": 1,
"parent_id": 0,
"type": 1,
"sort": 1,
"images": [],
"logo": "/uploads/202012/7/bd36c37ef742c7be.webp",
"status": 1,
"thumb": "/uploads/202012/7/thumb_bd36c37ef742c7be.webp",
},
"data": {
"id": 1,
"content": "<p>欢迎使用AnqiCMS</p>"
},
"logo": "/uploads/202012/7/bd36c37ef742c7be.webp",
"thumb": "/uploads/202012/7/thumb_bd36c37ef742c7be.webp",
"extra": {
"author": {
"name": "作者",
"value": "AnqiCMS",
"default": ""
}
},
"link": ""
},
"msg": ""
}
错误码 |
说明 |
0 |
OK |
-1 |
错误,错误原因在msg中指出 |
1001 |
未登录 |
1002 |
未授权 |
200 |
API请求OK |