mirror of
https://github.com/ProudMuBai/GoFilm.git
synced 2026-02-19 00:54:41 +08:00
readme update
This commit is contained in:
538
server/README.md
538
server/README.md
@@ -187,69 +187,69 @@ server
|
|||||||
|
|
||||||
- `/index` 首页数据
|
- `/index` 首页数据
|
||||||
|
|
||||||
```json
|
```text
|
||||||
{
|
{
|
||||||
"code": 0, // 状态码
|
"code": 0, // 状态码
|
||||||
"data": {
|
"data": {
|
||||||
"category": { // 分类信息
|
"category": { // 分类信息
|
||||||
"id": 0, // 分类ID
|
"id": 0, // 分类ID
|
||||||
"name": "分类信息", // 分类名称
|
"name": "分类信息", // 分类名称
|
||||||
"pid": 0, // 上级分类ID
|
"pid": 0, // 上级分类ID
|
||||||
"show": false, // 是否展示
|
"show": false, // 是否展示
|
||||||
"children": [], // 子分类信息
|
"children": [], // 子分类信息
|
||||||
},
|
},
|
||||||
"content": [
|
"content": [ // 内容区数据
|
||||||
{
|
{
|
||||||
"hot": [ // 热播影片
|
"hot": [ // 热播影片
|
||||||
{
|
{
|
||||||
"CreatedAt": "2024-01-13T19:04:01+08:00", // 创建时间
|
"CreatedAt": "2024-01-13T19:04:01+08:00", // 创建时间
|
||||||
"DeletedAt": null, // 删除时间
|
"DeletedAt": null, // 删除时间
|
||||||
"ID": 100, // ID
|
"ID": 100, // ID
|
||||||
"UpdatedAt": "2024-01-13T19:04:01+08:00", // 更新时间
|
"UpdatedAt": "2024-01-13T19:04:01+08:00", // 更新时间
|
||||||
"area": "大陆", // 地区
|
"area": "xxx", // 地区
|
||||||
"cName": "预告片", // 分类名称
|
"cName": "xxx", // 分类名称
|
||||||
"cid": 45, // 分类ID
|
"cid": 45, // 分类ID
|
||||||
"classTag": "剧情", // 剧情标签
|
"classTag": "xxx", // 剧情标签
|
||||||
"hits": 0, // 热度
|
"hits": 0, // 热度
|
||||||
"initial": "W", // 首字母
|
"initial": "X", // 首字母
|
||||||
"language": "国语", // 语言
|
"language": "xxx", // 语言
|
||||||
"mid": 10000, // 影片ID
|
"mid": 10000, // 影片ID
|
||||||
"name": "xxx", // 影片名称
|
"name": "xxx", // 影片名称
|
||||||
"pid": 1, // 上级分类ID
|
"pid": 1, // 上级分类ID
|
||||||
"releaseStamp": 1704880403, // 上映时间戳
|
"releaseStamp": 1704880403, // 上映时间戳
|
||||||
"remarks": "预告片", // 备注信息 [预告|完结|更新至xx集]
|
"remarks": "xxx", // 备注信息 [预告|完结|更新至xx集]
|
||||||
"score": 0, // 评分
|
"score": 0, // 评分
|
||||||
"state": "正片", // 状态
|
"state": "xx", // 状态 正片|预告
|
||||||
"subTitle": "xxx", // 子标题, 别名
|
"subTitle": "xxx", // 子标题, 别名
|
||||||
"updateStamp": 1704880403, // 更新时间戳
|
"updateStamp": 1704880403, // 更新时间戳
|
||||||
"year": 2024, // 年份
|
"year": 2024, // 年份
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"movies": [ // 近期更新影片
|
"movies": [ // 近期更新影片
|
||||||
{
|
{
|
||||||
"id": 10000, // 影片ID
|
"id": 10000, // 影片ID
|
||||||
"cid": 6, // 分类ID
|
"cid": 6, // 分类ID
|
||||||
"pid": 1, // 上级分类ID
|
"pid": 1, // 上级分类ID
|
||||||
"name": "xxxx", // 影片名称
|
"name": "xxxx", // 影片名称
|
||||||
"subTitle": "xxxx", // 子标题, 别名
|
"subTitle": "xxxx", // 子标题, 别名
|
||||||
"cName": "xxx", // 分类名称
|
"cName": "xxx", // 分类名称
|
||||||
"state": "正片", // 影片状态
|
"state": "正片", // 影片状态
|
||||||
"picture": "http://xxxx.jpg", // 海报图片url
|
"picture": "http://xxxx.jpg", // 海报图片url
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx,xxx", // 导演
|
"director": "xxx,xxx", // 导演
|
||||||
"blurb": "", // 剧情简介
|
"blurb": "", // 剧情简介
|
||||||
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
||||||
"area": "大陆", // 地区
|
"area": "xxx", // 地区
|
||||||
"year": "2024" // 年份
|
"year": "2024" // 年份
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"nav": [ // 导航信息
|
"nav": [ // 导航信息
|
||||||
{
|
{
|
||||||
"id": 0, // 分类ID
|
"id": 0, // 分类ID
|
||||||
"name": "分类信息", // 分类名称
|
"name": "xxxx", // 分类名称
|
||||||
"pid": 0, //上级分类ID
|
"pid": 0, //上级分类ID
|
||||||
"show": false, // 是否展示
|
"show": false, // 是否展示
|
||||||
"children": [], //子分类信息
|
"children": [], //子分类信息
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -261,17 +261,17 @@ server
|
|||||||
|
|
||||||
- `/config/basic` 网站基本配置信息
|
- `/config/basic` 网站基本配置信息
|
||||||
|
|
||||||
```json
|
```text
|
||||||
{
|
{
|
||||||
"code": 0,
|
"code": 0,
|
||||||
"data": {
|
"data": {
|
||||||
"siteName": "GoFilm", // 网站名称
|
"siteName": "GoFilm", // 网站名称
|
||||||
"domain": "http://127.0.0.1:3600", // 域名
|
"domain": "http://127.0.0.1:3600", // 域名
|
||||||
"logo": "https://xxx.jpg", // 网站logo
|
"logo": "https://xxx.jpg", // 网站logo
|
||||||
"keyword": "xxxx, xxxx", // 网站搜索关键字
|
"keyword": "xxxx, xxxx", // 网站搜索关键字
|
||||||
"describe": "xxxxxxx", // 网站描述信息
|
"describe": "xxxxxxx", // 网站描述信息
|
||||||
"state": true, //站点状态
|
"state": true, //站点状态
|
||||||
"hint": "网站升级中, 暂时无法访问 !!!" // 网站关闭时提示信息
|
"hint": "网站升级中, 暂时无法访问 !!!" // 网站关闭时提示信息
|
||||||
},
|
},
|
||||||
"msg": ""
|
"msg": ""
|
||||||
}
|
}
|
||||||
@@ -279,15 +279,15 @@ server
|
|||||||
|
|
||||||
- `/navCategory` 首页头部分类信息
|
- `/navCategory` 首页头部分类信息
|
||||||
|
|
||||||
```json
|
```text
|
||||||
{
|
{
|
||||||
"code": 0,
|
"code": 0,
|
||||||
"data": [
|
"data": [
|
||||||
{
|
{
|
||||||
"id": 0, // 分类ID
|
"id": 0, // 分类ID
|
||||||
"name": "分类信息", // 分类名称
|
"name": "xxxx", // 分类名称
|
||||||
"pid": 0, // 上级分类ID
|
"pid": 0, // 上级分类ID
|
||||||
"show": false, // 是否展示
|
"show": false, // 是否展示
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
"msg": ""
|
"msg": ""
|
||||||
@@ -296,82 +296,82 @@ server
|
|||||||
|
|
||||||
- ` /filmDetail` 影片详情信息
|
- ` /filmDetail` 影片详情信息
|
||||||
|
|
||||||
```json
|
```text
|
||||||
{
|
{
|
||||||
"code": 0,
|
"code": 0,
|
||||||
"data": {
|
"data": {
|
||||||
"detail": { // 影片详情信息
|
"detail": { // 影片详情信息
|
||||||
"id": 100000, // 影片ID
|
"id": 100000, // 影片ID
|
||||||
"cid": 30, // 影片分类ID
|
"cid": 30, // 影片分类ID
|
||||||
"pid": 4, // 上级分类ID
|
"pid": 4, // 上级分类ID
|
||||||
"name": "xxx", // 影片名称
|
"name": "xxx", // 影片名称
|
||||||
"picture": "https://xxx.jpg", // 海报封面url
|
"picture": "https://xxx.jpg", // 海报封面url
|
||||||
"playFrom": [ "xxx","xxx" ], // 播放来源
|
"playFrom": [ "xxx","xxx" ], // 播放来源
|
||||||
"DownFrom": "http", // 下载方式
|
"DownFrom": "http", // 下载方式
|
||||||
"playList": [ // 播放地址列表(主站点)
|
"playList": [ // 播放地址列表(主站点)
|
||||||
{
|
{
|
||||||
"episode": "第xx集", // 集数
|
"episode": "第xx集", // 集数
|
||||||
"link": "https://xxx/index.m3u8" // 播放地址url
|
"link": "https://xxx/index.m3u8" // 播放地址url
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
"downloadList": [ // 下载地址列表
|
"downloadList": [ // 下载地址列表
|
||||||
{
|
{
|
||||||
"episode": "第xx集", // 集数
|
"episode": "第xx集", // 集数
|
||||||
"link": "https://xxx/index.m3u8" // 播放地址url
|
"link": "https://xxx/index.m3u8" // 播放地址url
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
"descriptor": { // 影片详情
|
"descriptor": { // 影片详情
|
||||||
"subTitle": "", // 副标题, 别名
|
"subTitle": "", // 副标题, 别名
|
||||||
"cName": "xxxx", // 分类名称
|
"cName": "xxxx", // 分类名称
|
||||||
"enName": "xxx", // 影片名称中文拼音
|
"enName": "xxx", // 影片名称中文拼音
|
||||||
"initial": "X", // 影片名称首字母
|
"initial": "X", // 影片名称首字母
|
||||||
"classTag": "xxxx", // 内容标签
|
"classTag": "xxxx", // 内容标签
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx", // 导演
|
"director": "xxx", // 导演
|
||||||
"writer": "xxx", // 作者
|
"writer": "xxx", // 作者
|
||||||
"blurb": "xxx", // 简介(缺省)
|
"blurb": "xxx", // 简介(缺省)
|
||||||
"remarks": "更新至第xx集", // 更新进度
|
"remarks": "更新至第xx集", // 更新进度
|
||||||
"releaseDate": "2024-01-06", // 上映日期
|
"releaseDate": "2024-01-06", // 上映日期
|
||||||
"area": "xxx", // 地区
|
"area": "xxx", // 地区
|
||||||
"language": "xxx", // 语言
|
"language": "xxx", // 语言
|
||||||
"year": "2024", // 年份
|
"year": "2024", // 年份
|
||||||
"state": "正片", // 状态 正片|预告
|
"state": "正片", // 状态 正片|预告
|
||||||
"updateTime": "2024-01-13 00:51:21", // 更新时间
|
"updateTime": "2024-01-13 00:51:21", // 更新时间
|
||||||
"addTime": 1704511497, // 添加时间戳
|
"addTime": 1704511497, // 添加时间戳
|
||||||
"dbId": 26373174, // 豆瓣ID
|
"dbId": 26373174, // 豆瓣ID
|
||||||
"dbScore": "0.0", // 豆瓣评分
|
"dbScore": "0.0", // 豆瓣评分
|
||||||
"hits": 0, // 热度
|
"hits": 0, // 热度
|
||||||
"content": "xxx" //影片内容简介(全)
|
"content": "xxx" //影片内容简介(全)
|
||||||
},
|
},
|
||||||
"list": [ // 播放地址列表(全站点)
|
"list": [ // 播放地址列表(全站点)
|
||||||
{
|
{
|
||||||
"id": "xxxxxxxxxxxx", // 播放源ID
|
"id": "xxxxxxxxxxxx", // 播放源ID
|
||||||
"name": "HD(xxx)", // 播放源别名
|
"name": "HD(xxx)", // 播放源别名
|
||||||
"linkList": [ // 播放地址列表
|
"linkList": [ // 播放地址列表
|
||||||
{
|
{
|
||||||
"episode": "第xx集", // 集数
|
"episode": "第xx集", // 集数
|
||||||
"link": "https://xxx/index.m3u8" // 播放地址url
|
"link": "https://xxx/index.m3u8" // 播放地址url
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"relate": [ // 相关影片推荐
|
"relate": [ // 相关影片推荐
|
||||||
{
|
{
|
||||||
"id": 10000, // 影片ID
|
"id": 10000, // 影片ID
|
||||||
"cid": 6, // 分类ID
|
"cid": 6, // 分类ID
|
||||||
"pid": 1, // 上级分类ID
|
"pid": 1, // 上级分类ID
|
||||||
"name": "xxxx", // 影片名称
|
"name": "xxxx", // 影片名称
|
||||||
"subTitle": "xxxx", // 子标题, 别名
|
"subTitle": "xxxx", // 子标题, 别名
|
||||||
"cName": "xxx", // 分类名称
|
"cName": "xxx", // 分类名称
|
||||||
"state": "正片", // 影片状态
|
"state": "xxx", // 影片状态
|
||||||
"picture": "http://xxxx.jpg", // 海报图片url
|
"picture": "http://xxxx.jpg", // 海报图片url
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx,xxx", // 导演
|
"director": "xxx,xxx", // 导演
|
||||||
"blurb": "", // 剧情简介
|
"blurb": "", // 剧情简介
|
||||||
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
||||||
"area": "大陆", // 地区
|
"area": "xxx", // 地区
|
||||||
"year": "2024" // 年份
|
"year": "2024" // 年份
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -381,64 +381,64 @@ server
|
|||||||
|
|
||||||
- ` /filmPlayInfo` 影片播放页信息
|
- ` /filmPlayInfo` 影片播放页信息
|
||||||
|
|
||||||
```json
|
```text
|
||||||
{
|
{
|
||||||
"code": 0,
|
"code": 0,
|
||||||
"data": {
|
"data": {
|
||||||
"current": { // 当前播放信息
|
"current": { // 当前播放信息
|
||||||
"episode": "第xx集", // 当前播放集数
|
"episode": "第xx集", // 当前播放集数
|
||||||
"link": "https://xxx/index.m3u8" // 当前播放地址url
|
"link": "https://xxx/index.m3u8" // 当前播放地址url
|
||||||
},
|
},
|
||||||
"currentEpisode": 0, // 当前播放集数索引
|
"currentEpisode": 0, // 当前播放集数索引
|
||||||
"currentPlayFrom": "xxx", // 当前播放源ID
|
"currentPlayFrom": "xxx", // 当前播放源ID
|
||||||
"detail": { // 影片详情
|
"detail": { // 影片详情
|
||||||
"id": 100000, // 影片ID
|
"id": 100000, // 影片ID
|
||||||
"cid": 30, // 影片分类ID
|
"cid": 30, // 影片分类ID
|
||||||
"pid": 4, // 上级分类ID
|
"pid": 4, // 上级分类ID
|
||||||
"name": "xxx", // 影片名称
|
"name": "xxx", // 影片名称
|
||||||
"picture": "https://xxx.jpg", // 海报封面url
|
"picture": "https://xxx.jpg", // 海报封面url
|
||||||
"playFrom": [ "xxx","xxx" ], // 播放来源
|
"playFrom": [ "xxx","xxx" ], // 播放来源
|
||||||
"DownFrom": "http", // 下载方式
|
"DownFrom": "http", // 下载方式
|
||||||
"playList": [ // 播放地址列表(主站点)
|
"playList": [ // 播放地址列表(主站点)
|
||||||
{
|
{
|
||||||
"episode": "第xx集", // 集数
|
"episode": "第xx集", // 集数
|
||||||
"link": "https://xxx/index.m3u8" // 播放地址url
|
"link": "https://xxx/index.m3u8"// 播放地址url
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
"downloadList": [ // 下载地址列表
|
"downloadList": [ // 下载地址列表
|
||||||
{
|
{
|
||||||
"episode": "第xx集", // 集数
|
"episode": "第xx集", // 集数
|
||||||
"link": "https://xxx/index.m3u8" // 播放地址url
|
"link": "https://xxx/index.m3u8" // 播放地址url
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
"descriptor": { // 影片详情
|
"descriptor": { // 影片详情
|
||||||
"subTitle": "", // 副标题, 别名
|
"subTitle": "", // 副标题, 别名
|
||||||
"cName": "xxxx", // 分类名称
|
"cName": "xxxx", // 分类名称
|
||||||
"enName": "xxx", // 影片名称中文拼音
|
"enName": "xxx", // 影片名称中文拼音
|
||||||
"initial": "X", // 影片名称首字母
|
"initial": "X", // 影片名称首字母
|
||||||
"classTag": "xxxx", // 内容标签
|
"classTag": "xxxx", // 内容标签
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx", // 导演
|
"director": "xxx", // 导演
|
||||||
"writer": "xxx", // 作者
|
"writer": "xxx", // 作者
|
||||||
"blurb": "xxx", // 简介(缺省)
|
"blurb": "xxx", // 简介(缺省)
|
||||||
"remarks": "更新至第xx集", // 更新进度
|
"remarks": "更新至第xx集", // 更新进度
|
||||||
"releaseDate": "2024-01-06", // 上映日期
|
"releaseDate": "2024-01-06", // 上映日期
|
||||||
"area": "xxx", // 地区
|
"area": "xxx", // 地区
|
||||||
"language": "xxx", // 语言
|
"language": "xxx", // 语言
|
||||||
"year": "2024", // 年份
|
"year": "2024", // 年份
|
||||||
"state": "正片", // 状态 正片|预告
|
"state": "xxx", // 状态 正片|预告
|
||||||
"updateTime": "2024-01-13 00:51:21", // 更新时间
|
"updateTime": "2024-01-13 00:51:21", // 更新时间
|
||||||
"addTime": 1704511497, // 添加时间戳
|
"addTime": 1704511497, // 添加时间戳
|
||||||
"dbId": 26373174, // 豆瓣ID
|
"dbId": 26373174, // 豆瓣ID
|
||||||
"dbScore": "0.0", // 豆瓣评分
|
"dbScore": "0.0", // 豆瓣评分
|
||||||
"hits": 0, // 热度
|
"hits": 0, // 热度
|
||||||
"content": "xxx" //影片内容简介(全)
|
"content": "xxx" //影片内容简介(全)
|
||||||
},
|
},
|
||||||
"list": [ // 播放地址列表(全站点)
|
"list": [ // 播放地址列表(全站点)
|
||||||
{
|
{
|
||||||
"id": "xxxxxxxxxxxx", // 播放源ID
|
"id": "xxxxxxxxxxxx", // 播放源ID
|
||||||
"name": "HD(xxx)", // 播放源别名
|
"name": "HD(xxx)", // 播放源别名
|
||||||
"linkList": [ // 播放地址列表
|
"linkList": [ // 播放地址列表
|
||||||
{
|
{
|
||||||
"episode": "第xx集", // 集数
|
"episode": "第xx集", // 集数
|
||||||
"link": "https://xxx/index.m3u8" // 播放地址url
|
"link": "https://xxx/index.m3u8" // 播放地址url
|
||||||
@@ -447,22 +447,22 @@ server
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"relate": [ // 相关影片推荐
|
"relate": [ // 相关影片推荐
|
||||||
{
|
{
|
||||||
"id": 10000, // 影片ID
|
"id": 10000, // 影片ID
|
||||||
"cid": 6, // 分类ID
|
"cid": 6, // 分类ID
|
||||||
"pid": 1, // 上级分类ID
|
"pid": 1, // 上级分类ID
|
||||||
"name": "xxxx", // 影片名称
|
"name": "xxxx", // 影片名称
|
||||||
"subTitle": "xxxx", // 子标题, 别名
|
"subTitle": "xxxx", // 子标题, 别名
|
||||||
"cName": "xxx", // 分类名称
|
"cName": "xxx", // 分类名称
|
||||||
"state": "正片", // 影片状态
|
"state": "xxx", // 影片状态
|
||||||
"picture": "http://xxxx.jpg", // 海报图片url
|
"picture": "http://xxxx.jpg", // 海报图片url
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx,xxx", // 导演
|
"director": "xxx,xxx", // 导演
|
||||||
"blurb": "", // 剧情简介
|
"blurb": "", // 剧情简介
|
||||||
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
||||||
"area": "大陆", // 地区
|
"area": "xxx", // 地区
|
||||||
"year": "2024" // 年份
|
"year": "2024" // 年份
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -472,66 +472,66 @@ server
|
|||||||
|
|
||||||
- `/filmClassify` 分类影片首页数据
|
- `/filmClassify` 分类影片首页数据
|
||||||
|
|
||||||
```json
|
```text
|
||||||
{
|
{
|
||||||
"code": 0,
|
"code": 0,
|
||||||
"data": {
|
"data": {
|
||||||
"content": { // 内容区数据
|
"content": { // 内容区数据
|
||||||
"news": [
|
"news": [ //最新上映
|
||||||
"id": 10000, // 影片ID
|
"id": 10000, // 影片ID
|
||||||
"cid": 6, // 分类ID
|
"cid": 6, // 分类ID
|
||||||
"pid": 1, // 上级分类ID
|
"pid": 1, // 上级分类ID
|
||||||
"name": "xxxx", // 影片名称
|
"name": "xxxx", // 影片名称
|
||||||
"subTitle": "xxxx", // 子标题, 别名
|
"subTitle": "xxxx", // 子标题, 别名
|
||||||
"cName": "xxx", // 分类名称
|
"cName": "xxx", // 分类名称
|
||||||
"state": "正片", // 影片状态
|
"state": "xxx", // 影片状态
|
||||||
"picture": "http://xxxx.jpg", // 海报图片url
|
"picture": "http://xxxx.jpg", // 海报图片url
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx,xxx", // 导演
|
"director": "xxx,xxx", // 导演
|
||||||
"blurb": "", // 剧情简介
|
"blurb": "", // 剧情简介
|
||||||
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
||||||
"area": "大陆", // 地区
|
"area": "xxx", // 地区
|
||||||
"year": "2024" // 年份
|
"year": "2024" // 年份
|
||||||
],
|
],
|
||||||
"recent": [
|
"recent": [ // 近期更新
|
||||||
"id": 10000, // 影片ID
|
"id": 10000, // 影片ID
|
||||||
"cid": 6, // 分类ID
|
"cid": 6, // 分类ID
|
||||||
"pid": 1, // 上级分类ID
|
"pid": 1, // 上级分类ID
|
||||||
"name": "xxxx", // 影片名称
|
"name": "xxxx", // 影片名称
|
||||||
"subTitle": "xxxx", // 子标题, 别名
|
"subTitle": "xxxx", // 子标题, 别名
|
||||||
"cName": "xxx", // 分类名称
|
"cName": "xxx", // 分类名称
|
||||||
"state": "正片", // 影片状态
|
"state": "xxx", // 影片状态
|
||||||
"picture": "http://xxxx.jpg", // 海报图片url
|
"picture": "http://xxxx.jpg", // 海报图片url
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx,xxx", // 导演
|
"director": "xxx,xxx", // 导演
|
||||||
"blurb": "", // 剧情简介
|
"blurb": "", // 剧情简介
|
||||||
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
||||||
"area": "大陆", // 地区
|
"area": "xxx", // 地区
|
||||||
"year": "2024" // 年份
|
"year": "2024" // 年份
|
||||||
],
|
],
|
||||||
"top": [
|
"top": [ // 热度排行
|
||||||
"id": 10000, // 影片ID
|
"id": 10000, // 影片ID
|
||||||
"cid": 6, // 分类ID
|
"cid": 6, // 分类ID
|
||||||
"pid": 1, // 上级分类ID
|
"pid": 1, // 上级分类ID
|
||||||
"name": "xxxx", // 影片名称
|
"name": "xxxx", // 影片名称
|
||||||
"subTitle": "xxxx", // 子标题, 别名
|
"subTitle": "xxxx", // 子标题, 别名
|
||||||
"cName": "xxx", // 分类名称
|
"cName": "xxx", // 分类名称
|
||||||
"state": "正片", // 影片状态
|
"state": "xxx", // 影片状态
|
||||||
"picture": "http://xxxx.jpg", // 海报图片url
|
"picture": "http://xxxx.jpg", // 海报图片url
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx,xxx", // 导演
|
"director": "xxx,xxx", // 导演
|
||||||
"blurb": "", // 剧情简介
|
"blurb": "", // 剧情简介
|
||||||
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
||||||
"area": "大陆", // 地区
|
"area": "xxx", // 地区
|
||||||
"year": "2024" // 年份
|
"year": "2024" // 年份
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"title": { // 头部标题区数据(暂未使用)
|
"title": { // 头部标题区数据(暂未使用)
|
||||||
"id": 0, // 分类ID
|
"id": 0, // 分类ID
|
||||||
"name": "分类信息", // 分类名称
|
"name": "xxx", // 分类名称
|
||||||
"pid": 0, // 上级分类ID
|
"pid": 0, // 上级分类ID
|
||||||
"show": false, // 是否展示
|
"show": false, // 是否展示
|
||||||
"children": [], // 子分类信息
|
"children": [], // 子分类信息
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"msg": ""
|
"msg": ""
|
||||||
@@ -540,46 +540,46 @@ server
|
|||||||
|
|
||||||
- ` /filmClassidySearch` 影片分类检索页数据
|
- ` /filmClassidySearch` 影片分类检索页数据
|
||||||
|
|
||||||
```json
|
```text
|
||||||
{
|
{
|
||||||
"code": 0,
|
"code": 0,
|
||||||
"data": {
|
"data": {
|
||||||
"list": [
|
"list": [ // 影片信息集合
|
||||||
{
|
{
|
||||||
"id": 10000, // 影片ID
|
"id": 10000, // 影片ID
|
||||||
"cid": 6, // 分类ID
|
"cid": 6, // 分类ID
|
||||||
"pid": 1, // 上级分类ID
|
"pid": 1, // 上级分类ID
|
||||||
"name": "xxxx", // 影片名称
|
"name": "xxxx", // 影片名称
|
||||||
"subTitle": "xxxx", // 子标题, 别名
|
"subTitle": "xxxx", // 子标题, 别名
|
||||||
"cName": "xxx", // 分类名称
|
"cName": "xxx", // 分类名称
|
||||||
"state": "正片", // 影片状态
|
"state": "xxx", // 影片状态
|
||||||
"picture": "http://xxxx.jpg", // 海报图片url
|
"picture": "http://xxxx.jpg", // 海报图片url
|
||||||
"actor": "xxx,xxx", // 演员
|
"actor": "xxx,xxx", // 演员
|
||||||
"director": "xxx,xxx", // 导演
|
"director": "xxx,xxx", // 导演
|
||||||
"blurb": "", // 剧情简介
|
"blurb": "", // 剧情简介
|
||||||
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
"remarks": "HD", // 备注信息 [预告|完结|更新至xx集]
|
||||||
"area": "大陆", // 地区
|
"area": "xxx", // 地区
|
||||||
"year": "2024" // 年份
|
"year": "2024" // 年份
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"page": { // 分页信息
|
"page": { // 分页信息
|
||||||
"pageSize": 49, // 每页页数
|
"pageSize": 49, // 每页页数
|
||||||
"current": 1, // 当前页
|
"current": 1, // 当前页
|
||||||
"pageCount": xx, // 总页数
|
"pageCount": xx, // 总页数
|
||||||
"total": xx, // 总数据量
|
"total": xx, // 总数据量
|
||||||
},
|
},
|
||||||
"params": { // 请求参数
|
"params": { // 请求参数
|
||||||
"Area": "", // 地区
|
"Area": "", // 地区
|
||||||
"Category": "", // 分类ID
|
"Category": "", // 分类ID
|
||||||
"Language": "", // 语言
|
"Language": "", // 语言
|
||||||
"Pid": "1", // 上级分类ID
|
"Pid": "1", // 上级分类ID
|
||||||
"Plot": "", // 剧情
|
"Plot": "", // 剧情
|
||||||
"Sort": "xxx", // 排序方式
|
"Sort": "xxx", // 排序方式
|
||||||
"Year": "", // 年份
|
"Year": "", // 年份
|
||||||
},
|
},
|
||||||
"search": {
|
"search": { // 分类标签组信息
|
||||||
"sortList": [ "Category","Plot","Area","Language","Year","Sort" ], // 标签数据排序, 固定值
|
"sortList": [ "Category","Plot","Area","Language","Year","Sort" ], // 标签数据排序, 固定值
|
||||||
"tags": { // 标签组, 用于页面筛选Tag渲染
|
"tags": { // 标签组, 用于页面筛选Tag渲染
|
||||||
"Area": [ { Name:"", Value:"" } ],
|
"Area": [ { Name:"", Value:"" } ],
|
||||||
"Category": [ { Name:"", Value:"" } ],
|
"Category": [ { Name:"", Value:"" } ],
|
||||||
"Initial": [ { Name:"", Value:"" } ],
|
"Initial": [ { Name:"", Value:"" } ],
|
||||||
@@ -588,7 +588,7 @@ server
|
|||||||
"Sort": [ { Name:"", Value:"" } ],
|
"Sort": [ { Name:"", Value:"" } ],
|
||||||
"Year": [ { Name:"", Value:"" } ]
|
"Year": [ { Name:"", Value:"" } ]
|
||||||
},
|
},
|
||||||
"titles": { // 标签组标题映射(固定值)
|
"titles": { // 标签组标题映射(固定值)
|
||||||
"Area": "地区",
|
"Area": "地区",
|
||||||
"Category": "类型",
|
"Category": "类型",
|
||||||
"Initial": "首字母",
|
"Initial": "首字母",
|
||||||
@@ -598,11 +598,11 @@ server
|
|||||||
"Year": "年份"
|
"Year": "年份"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"title": { // 当前一级分类信息
|
"title": { // 当前一级分类信息
|
||||||
"id": 1, // 分类ID
|
"id": 1, // 分类ID
|
||||||
"pid": 0, // 上级分类ID
|
"pid": 0, // 上级分类ID
|
||||||
"name": "xxx", // 分类名称
|
"name": "xxx", // 分类名称
|
||||||
"show": true, // 是否展示
|
"show": true, // 是否展示
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"msg": ""
|
"msg": ""
|
||||||
|
|||||||
Reference in New Issue
Block a user