获取菜单项
开发中GET
/api/menu获取菜单项。
请求参数
Query 参数
tree
boolean
可选
是否构建树(默认为 true)
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
errMsg
null
必需
data
array [object {10}]
必需
menuItemId
integer
菜单项 ID
displayName
string
菜单名
href
string | null
地址
target
string
打开方式
枚举值:
BLANKSELFPARENTTOP
parentMenuId
number
父菜单 ID
parentMenuItemId
integer | null
父菜单项 ID
children
array [object]
子菜单数组
>= 0 items
index
number
菜单项排序索引
createTime
integer
创建时间戳
lastModifyTime
number | null
最后修改时间戳
示例
构建树
{
"code": 200,
"errMsg": null,
"data": [
{
"menuItemId": 1,
"displayName": "首页",
"href": "/",
"target": "SELF",
"parentMenuId": 1,
"parentMenuItemId": null,
"children": [
{
"menuItemId": 2,
"displayName": "关于我",
"href": "/",
"target": "SELF",
"parentMenuId": 1,
"parentMenuItemId": 1,
"children": [],
"index": 0,
"createTime": 1713621053205,
"lastModifyTime": null
}
],
"index": 0,
"createTime": 1713618695256,
"lastModifyTime": 1713621066921
}
]
}
修改于 5 个月前