- 数据
- 栏目列表_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
- 内容
- 用户
- 系统
- 其它
栏目列表_ChannelList
GET
/api/channel
栏目接口
标签使用示例#
获取一级栏目列表#
[@ChannelList isNav='true'; channels]
[#list channels as bean]
<a href="${bean.url}">${bean.url}</a>
[/#list]
[/@ChannelList]
获取子栏目列表#
[@ChannelList parentId='23' isNav='true'; channels]
[#list channels as bean]
<a href="${bean.url}">${bean.url}</a>
[/#list]
[/@ChannelList]
获取一级和 二级栏目列表#
[@ChannelList isNav='true'; channels]
<ul>
[#list channels as parent]
<li>
<a href="${parent.url}">${parent.url}</a>
[#if parent.hasChildren]
[@ChannelList parentId=parent.id isNav='true'; subs]
<ul>
[#list subs as sub]
<li><a href="${sub.url}">${sub.url}</a></li>
[/#list]
</ul>
[/@ChannelList]
[/#if]
</li>
[/#list]
</ul>
[/@ChannelList]
请求参数
Query 参数
siteId
integer <int64>
可选
parent
string
上级栏目别名
parentId
integer <int64>
上级栏目ID
isNav
boolean
可选
true
false
isAllowSearch
boolean
可选
true
false
isIncludeChildren
boolean
可选
true
时包含所有后代栏目(子级、孙级等),设为 false
时仅包含直接子栏目。默认false
offset
integer <int32>
可选
limit
integer <int32>
可选
示例代码
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/channel?siteId&parent&parentId&isNav&isAllowSearch&isIncludeChildren&offset&limit'
返回响应
🟢200成功
*/*
Body
array of:
id
integer <int64>
栏目ID
siteId
integer <int64>
站点ID
parentId
integer <int64>
上级栏目ID
channelModelId
integer <int64>
栏目模型ID
articleModelId
integer <int64>
文章模型ID
performanceTypeId
integer <int64>
绩效类型ID
name
string
名称
alias
string
别名
正则匹配:
^[\w-]*$
type
integer <int32>
必需
articleTemplate
string
文章模板
正则匹配:
^(?!.*\.\.).*$
channelTemplate
string
栏目模板
正则匹配:
^(?!.*\.\.).*$
image
string
图片
linkUrl
string
转向链接
正则匹配:
^(http|/).*$
processKey
string
流程标识
targetBlank
boolean
是否新窗口打开
nav
boolean
是否导航菜单
pageSize
integer <int32>
每页条数
orderDesc
boolean
是否倒序排序
allowComment
boolean
是否允许评论
allowContribute
boolean
是否允许投稿
allowSearch
boolean
是否允许搜索
created
string <date-time>
创建日期
modified
string <date-time>
修改日期
depth
integer <int32>
层级
order
integer <int32>
排列顺序
views
integer <int64>
浏览次数
selfViews
integer <int64>
栏目页浏览次数
mainsJson
string
可选
clobsJson
string
可选
customs
object
自定义字段
额外字段
object
自定义字段
hasChildren
boolean
是否有子栏目
children
array[object (Channel_List) {46}]
可选
null
id
integer <int64>
栏目ID
siteId
integer <int64>
站点ID
parentId
integer <int64>
上级栏目ID
channelModelId
integer <int64>
栏目模型ID
articleModelId
integer <int64>
文章模型ID
performanceTypeId
integer <int64>
绩效类型ID
name
string
名称
alias
string
别名
正则匹配:
^[\w-]*$
type
integer <int32>
必需
articleTemplate
string
文章模板
正则匹配:
^(?!.*\.\.).*$
channelTemplate
string
栏目模板
正则匹配:
^(?!.*\.\.).*$
image
string
图片
linkUrl
string
转向链接
正则匹配:
^(http|/).*$
processKey
string
流程标识
targetBlank
boolean
是否新窗口打开
nav
boolean
是否导航菜单
pageSize
integer <int32>
每页条数
orderDesc
boolean
是否倒序排序
allowComment
boolean
是否允许评论
allowContribute
boolean
是否允许投稿
allowSearch
boolean
是否允许搜索
created
string <date-time>
创建日期
modified
string <date-time>
修改日期
depth
integer <int32>
层级
order
integer <int32>
排列顺序
views
integer <int64>
浏览次数
selfViews
integer <int64>
栏目页浏览次数
mainsJson
string
可选
clobsJson
string
可选
customs
object
自定义字段
hasChildren
boolean
是否有子栏目
children
array[object (Channel_List) {46}]
可选
null
parent
object (Channel_List)
栏目实体类
site
object (Site_List)
站点实体类
channelModel
object (Model_List)
模型实体类
articleModel
object (Model_List)
模型实体类
performanceType
object (PerformanceType_List)
可选
description
string
可选
seoDescription
url
string
URL地址
keywords
string
可选
seoKeywords
dynamicUrl
string
动态URL地址
staticUrl
string
可选
names
array[string]
可选
paths
array[object (Channel_List) {46}]
可选
link
boolean
是否链接
title
string
可选
seoTitle
,如不存在,则获取栏目名称parent
object (Channel_List)
栏目实体类
site
object (Site_List)
站点实体类
id
integer <int64>
站点ID
parentId
integer <int64>
上级站点ID
orgId
integer <int64>
组织ID
modelId
integer <int64>
模型ID
name
string
名称
description
string
描述
protocol
string
必需
domain
string
域名
正则匹配:
^(?!(uploads|templates|WEB-INF|cp)$)[a-z0-9-.]*
subDir
string
子目录
正则匹配:
^(?!(uploads|templates|WEB-INF|cp)$)[\w-]*
theme
string
主题
mobileTheme
string
手机端主题
pageSize
integer <int32>
每页条数
logo
string
LOGO
seoTitle
string
SEO标题
seoKeywords
string
SEO关键词
seoDescription
string
SEO描述
staticFile
string
静态页文件
mobileStaticFile
string
手机端静态页文件
editorSettings
string
编辑器设置
status
integer <int32>
必需
depth
integer <int32>
层级
order
integer <int32>
排列顺序
views
integer <int64>
浏览次数
selfViews
integer <int64>
首页浏览次数
todayViews
integer <int32>
今日浏览次数
yesterdayViews
integer <int32>
昨日浏览次数
maxViews
integer <int32>
最高浏览次数
maxDate
string <date-time>
最高浏览日期
mainsJson
string
可选
clobsJson
string
可选
customs
object
自定义字段
watermark
object (Site.Watermark_List)
水印设置
html
object (Site.Html_List)
静态页配置
messageBoard
object (Site.MessageBoard_List)
留言板设置
editor
object
可选
copyFromId
integer <int64>
复制站点ID
copyData
array[string]
复制数据
hasChildren
boolean
是否有子站点
parent
object (Site_List)
站点实体类
org
object (Org_List)
组织实体类
model
object (Model_List)
模型实体类
enabled
boolean
可选
url
string
URL地址
filesPath
string
可选
api
string
可选
mobileStaticUrl
string
可选
dynamicUrl
string
动态URL地址
staticUrl
string
静态URL地址
normalStaticUrl
string
可选
dy
string
可选
names
array[string]
可选
template
string
可选
staticBase
string
可选
paths
array[object (Site_List) {58}]
可选
disabled
boolean
可选
htmlEnabled
boolean
可选
title
string
可选
targetBlank
boolean
是否新窗口打开
channelModel
object (Model_List)
模型实体类
articleModel
object (Model_List)
模型实体类
performanceType
object (PerformanceType_List)
可选
id
integer <int64>
绩效类型ID
siteId
integer <int64>
站点ID
name
string
名称
score
integer <int32>
分数
order
integer <int64>
排列顺序
description
string
可选
seoDescription
url
string
URL地址
keywords
string
可选
seoKeywords
dynamicUrl
string
动态URL地址
staticUrl
string
可选
names
array[string]
可选
paths
array[object (Channel_List) {46}]
可选
id
integer <int64>
栏目ID
siteId
integer <int64>
站点ID
parentId
integer <int64>
上级栏目ID
channelModelId
integer <int64>
栏目模型ID
articleModelId
integer <int64>
文章模型ID
performanceTypeId
integer <int64>
绩效类型ID
name
string
名称
alias
string
别名
正则匹配:
^[\w-]*$
type
integer <int32>
必需
articleTemplate
string
文章模板
正则匹配:
^(?!.*\.\.).*$
channelTemplate
string
栏目模板
正则匹配:
^(?!.*\.\.).*$
image
string
图片
linkUrl
string
转向链接
正则匹配:
^(http|/).*$
processKey
string
流程标识
targetBlank
boolean
是否新窗口打开
nav
boolean
是否导航菜单
pageSize
integer <int32>
每页条数
orderDesc
boolean
是否倒序排序
allowComment
boolean
是否允许评论
allowContribute
boolean
是否允许投稿
allowSearch
boolean
是否允许搜索
created
string <date-time>
创建日期
modified
string <date-time>
修改日期
depth
integer <int32>
层级
order
integer <int32>
排列顺序
views
integer <int64>
浏览次数
selfViews
integer <int64>
栏目页浏览次数
mainsJson
string
可选
clobsJson
string
可选
customs
object
自定义字段
hasChildren
boolean
是否有子栏目
children
array[object (Channel_List) {46}]
可选
null
parent
object (Channel_List)
栏目实体类
site
object (Site_List)
站点实体类
channelModel
object (Model_List)
模型实体类
articleModel
object (Model_List)
模型实体类
performanceType
object (PerformanceType_List)
可选
description
string
可选
seoDescription
url
string
URL地址
keywords
string
可选
seoKeywords
dynamicUrl
string
动态URL地址
staticUrl
string
可选
names
array[string]
可选
paths
array[object (Channel_List) {46}]
可选
link
boolean
是否链接
title
string
可选
seoTitle
,如不存在,则获取栏目名称link
boolean
是否链接
title
string
可选
seoTitle
,如不存在,则获取栏目名称示例
[
{
"id": 0,
"siteId": 0,
"parentId": 0,
"channelModelId": 0,
"articleModelId": 0,
"performanceTypeId": 0,
"name": "string",
"alias": "string",
"type": 0,
"articleTemplate": "string",
"channelTemplate": "string",
"image": "string",
"linkUrl": "string",
"processKey": "string",
"targetBlank": true,
"nav": true,
"pageSize": 0,
"orderDesc": true,
"allowComment": true,
"allowContribute": true,
"allowSearch": true,
"created": "2019-08-24T14:15:22Z",
"modified": "2019-08-24T14:15:22Z",
"depth": 0,
"order": 0,
"views": 0,
"selfViews": 0,
"mainsJson": "string",
"clobsJson": "string",
"customs": {
"property1": {},
"property2": {}
},
"hasChildren": true,
"children": [
{}
],
"parent": {},
"site": {
"id": 0,
"parentId": 0,
"orgId": 0,
"modelId": 0,
"name": "string",
"description": "string",
"protocol": "string",
"domain": "string",
"subDir": "string",
"theme": "string",
"mobileTheme": "string",
"pageSize": 0,
"logo": "string",
"seoTitle": "string",
"seoKeywords": "string",
"seoDescription": "string",
"staticFile": "string",
"mobileStaticFile": "string",
"editorSettings": "string",
"status": 0,
"depth": 0,
"order": 0,
"views": 0,
"selfViews": 0,
"todayViews": 0,
"yesterdayViews": 0,
"maxViews": 0,
"maxDate": "2019-08-24T14:15:22Z",
"mainsJson": "string",
"clobsJson": "string",
"customs": {
"property1": {},
"property2": {}
},
"watermark": {
"enabled": true,
"overlay": "string",
"position": 0,
"dissolve": 0,
"minWidth": 0,
"minHeight": 0
},
"html": {
"enabled": true,
"auto": true,
"listPages": 0,
"channel": "string",
"article": "string",
"enabledAndAuto": true
},
"messageBoard": {
"enabled": true,
"loginRequired": true
},
"editor": {
"property1": {},
"property2": {}
},
"copyFromId": 0,
"copyData": [
"string"
],
"hasChildren": true,
"parent": {},
"org": {
"id": 0,
"parentId": 0,
"name": "string",
"phone": "string",
"address": "string",
"contacts": "string",
"depth": 0,
"order": 0,
"hasChildren": true,
"names": [
"string"
],
"paths": [
{}
]
},
"model": {
"id": 0,
"siteId": 0,
"name": "string",
"type": "string",
"scope": 0,
"order": 0,
"mains": "string",
"asides": "string",
"customs": "string"
},
"enabled": true,
"url": "string",
"filesPath": "string",
"api": "string",
"mobileStaticUrl": "string",
"dynamicUrl": "string",
"staticUrl": "string",
"normalStaticUrl": "string",
"dy": "string",
"names": [
"string"
],
"template": "string",
"staticBase": "string",
"paths": [
{}
],
"disabled": true,
"htmlEnabled": true,
"title": "string",
"targetBlank": true
},
"channelModel": {
"id": 0,
"siteId": 0,
"name": "string",
"type": "string",
"scope": 0,
"order": 0,
"mains": "string",
"asides": "string",
"customs": "string"
},
"articleModel": {
"id": 0,
"siteId": 0,
"name": "string",
"type": "string",
"scope": 0,
"order": 0,
"mains": "string",
"asides": "string",
"customs": "string"
},
"performanceType": {
"id": 0,
"siteId": 0,
"name": "string",
"score": 0,
"order": 0
},
"description": "string",
"url": "string",
"keywords": "string",
"dynamicUrl": "string",
"staticUrl": "string",
"names": [
"string"
],
"paths": [
{}
],
"link": true,
"title": "string"
}
]
修改于 2025-03-04 10:45:21