添加菜单项
开发中POST
http://localhost:8098/admin/menu/item添加菜单项。
请求参数
Body 参数application/json
displayName
string
菜单项名
<= 128 字符
href
string
地址
<= 512 字符
target
enum<string> | enum<null>
打开方式
枚举值:
BLANKSELFPARENTTOP
默认值:
BLANK
parentMenuId
integer
父菜单 ID
parentMenuItemId
integer | null
父菜单项 ID
index
integer | null
菜单排序索引
从 0 开始,数值越大,越靠后。
>= 0
默认值:
0
示例
{
"displayName": "string",
"href": "string",
"target": "BLANK",
"parentMenuId": 0,
"parentMenuItemId": 0,
"index": 0
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
添加成功
{
"code": 200,
"errMsg": null,
"data": {
"menuItemId": 4,
"displayName": "报律所候铁合代",
"href": "culpa ullamco eiusmod dolor",
"target": "PARENT",
"parentMenuId": 3,
"parentMenuItemId": null,
"createTime": 1709481816060
}
}
最后修改时间: 8 个月前