💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] ### 新闻分类列表 #### URL > web/index.php?c=article&a=news&do=category #### 请求方式 > GET #### 请求参数 无 #### 返回数据 ``` { "message": { "errno": 0, "message": { "1": { "id": "1", "title": "国内新闻", //分类名称 "displayorder": "0", //排序 "type": "news" }, "2": { "id": "2", "title": "国外新闻", "displayorder": "10", "type": "news" }, "19": { "id": "19", "title": "test2", "displayorder": "0", "type": "news" } } }, "redirect": "", "type": "ajax" } ``` ### 删除新闻分类 #### URL > web/index.php?c=article&a=news&do=category_del&id=分类id #### 请求方式 > GET #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | id | int |是 | 新闻分类id | - | #### 返回数据 ``` { "message": { "errno": 0, "message": "删除公告分类成功" }, "redirect": "", "type": "ajax" } ``` ### 添加新闻分类 #### URL > web/index.php?c=article&a=news&do=category_post #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | title[0] | array |是 | 第一个标题 | - | | title[1] | array |是 | 第二个标题 | - | | displayorder[0] | array |是 | 第一个标题排序 | - | | displayorder[1] | array |是 | 第二个标题排序 | 注意:标题和排序下标对应|| #### 返回数据 ``` { "message": { "errno": 0, "message": "添加分类成功" }, "redirect": "", "type": "ajax" } ``` ### 获取某一新闻分类详情 #### URL > web/index.php?c=article&a=news&do=category_detail&id=新闻分类ID #### 请求方式 >GET #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | id | int | 否 | 新闻分类ID | | #### 返回数据 ``` { "message": { "errno": 0, "message": { "id": "2", "title": "国外新闻", //新闻分类名称 "displayorder": "10", //新闻分类排序 "type": "news" } }, "redirect": "", "type": "ajax" } ```