💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
>获取一级文章分类列表 ~~~[api] get:/index.php/helper/Apihelper/getTopMenuList int:num=0#获取分类的最多个数 ,0:获取全部 <<< success { "err": 0, "count": 2, "data": [ { "id": 10, "title": "api帮助文档", "en_title": "Chinese", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", }, { "id": 11, "title": "使用帮助文档", "en_title": "Maths", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", } ] } <<< error { "err": 1, "code": 1000, "content": "错误信息" } ~~~ | 字段 | 描述 | | --- | --- | | count | 获取分类个数 | | data | 分类数据 | | |----id| 分类id | | |----title| 分类标题 | | |----en_title| 分类小标题 | | |----ico| 分类图标 | >分类多级列表,获取带子集的分类列表或者获取某个分类下的子分类 ~~~[api] get:/index.php/helper/Apihelper/getMenuList int:parent_id=0#上级分类id,0:表示所有的分类,大于0:获取某个菜单下的子菜单 int:num=0#获取菜单的顶级个数 ,0:表示获取全部 int:level=0#获取菜单层数 ,0:表示获取全部,大于0:表示level层内的菜单 <<< success { "err": 0, "count": 2, "data": [ { "id": 10, "title": "api帮助文档", "en_title": "Chinese", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 0, "sub": [ { "id": 12, "title": "php开发api", "en_title": "Composition", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 10, "sub": [ ] } ] }, { "id": 11, "title": "数学", "en_title": "Maths", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 0 } ] } <<< error { "err": 1, "code": 1000, "content": "错误信息" } ~~~ | 字段 | 描述 | | --- | --- | | count | 获取分类个数 | | data | 分类数据 | | |----id| 分类id | | |----title| 分类标题 | | |----en_title| 分类小标题 | | |----parent_id| 上级分类id | | |----ico| 分类图标 | | |----sub| 子菜单的数据 | >获取分类详细信息 ~~~[api] get:/index.php/helper/Apihelper/getMenuInfo *int:id=1#分类id <<< success { "err": 0, "data": { "id": 10, "title": "使用帮助文档", "en_title": "Chinese", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "parent_id": 0 } } <<< error { "err": 1, "code": 1000, "content": "错误信息" } ~~~ | 字段 | 描述 | | --- | --- | | data | 分类数据 | | |----id| 分类id | | |----title| 分类标题 | | |----en_title| 分类小标题 | | |----parent_id| 上级分类id | | |----ico| 分类图标 | >获取文章列表 ~~~[api] get:/index.php/helper/Apihelper/getList int:pagesize=10#每页显示个数 int:page=1#显示页码数 string:keyword= #检索的关键字 string:sort= id #排序字段 string:sort_type= asc#排序类型 int:parent_id=1#分类id,0:全部分类下的文章 <<< success { "err": 0, "page": 1, "pageTotal": 1, "pageSize": 10, "count": 1, "data": [{ "id": 4, "title": "文章标题", "describe": "文章描述", "url": false, "browse_num": 0, "thumb": "http://localhost/public/Upload/logo_2020_03_14_15_01_51.png", "addtime": "2020-03-14 15:01:55", "parent": { "id": 68, "title": "测试", "ico": "http://localhost/public/Upload/logo_2020_03_14_15_01_51.png" }, "publisher": { "id": 0, "name": "Admin", "headPath": "" } }] } <<< error { "err": 1, "code": 1000, "content": "错误信息" } ~~~ | 字段 | 描述 | | --- | --- | | page | 当前页码 | | pageTotal | 总共页码数 | | pageSize | 每页显示记录条数 | | count| 当前记录数 | | data| 文章列表 | | |----id | 文章id | | |----title| 文章标题 | | |----describe | 文章描述 | | |----url| 文章连接,url值为真表示文章要跳转到该连接 | | |----browse_num| 浏览量 | | |----thumb| 文章缩略图 | | |----addtime| 发布时间 | | |----parent| 文章分类 | | |----|----id| 分类id | | |----|----title| 分类标题 | | |----|----ico| 分类图标 | | |----publisher| 文章发布者 | | |----|----id| 发布者id | | |----|---name| 发布新昵称,如果为管理员admin | | |----|----headPath| 发布者头像,只有普通用户发布的才有该参数,管理员为空字符串 | >获取文章详情 ~~~[api] get:/index.php/helper/Apihelper/getInfo *int:id=1#文章id int:browse_interval=10#查看文章后多少秒更新浏览量,0:无延时更新浏览量,大于0:browse_interval秒后更新浏览量 <<< success { "err": 0, "data": { "id": 4, "title": "标题", "describe": "描述", "content": "文章内容", "url": false, "browse_num": 0, "thumb": "http://localhost/web/public/Upload/administrator/logo_2020_03_14_15_01_51.png", "addtime": "2020-03-14 15:01:55", "parent": { "id": 68, "title": "测试", "ico": "http://localhost/web/public/Upload/2wodntmo6471584168716434.jpg" }, "publisher": { "id": 0, "name": "Admin", "headPath": "" } } } <<< error { "err": 1, "code": 1000, "content": "错误信息" } ~~~ | 字段 | 描述 | | --- | --- | | data| 文章列表 | | |----id | 文章id | | |----title| 文章标题 | | |----describe | 文章描述 | | |----content | 文章内容 | | |----url| 文章连接,url值为真表示文章要跳转到该连接 | | |----browse_num| 浏览量 | | |----thumb| 文章缩略图 | | |----addtime| 发布时间 | | |----parent| 文章分类 | | |----|----id| 分类id | | |----|----title| 分类标题 | | |----|----ico| 分类图标 | | |----publisher| 文章发布者 | | |----|----id| 发布者id | | |----|---name| 发布新昵称,如果为管理员admin | | |----|----headPath| 发布者头像,只有普通用户发布的才有该参数,管理员为空字符串 |