文章编辑
POST
/api/article/edit请求参数
Body 参数application/json
id
integer
主键
title
string
标题
cid
integer
分类
intro
string
简介
summary
string
摘要
content
string
内容
author
string
作者
sort
integer
排序
isShow
integer
必需
是否显示: 0=否, 1=是
示例
{
"id": 1,
"title": "斤斤计较",
"cid": 1,
"intro": "呃呃呃",
"content": "嘎嘎嘎",
"author": "小马哥",
"sort": 0,
"isShow": 1
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
msg
string
必需
data
array[string]
必需
示例
{
"code": 200,
"msg": "成功",
"data": []
}
最后修改时间: 2 年前