发布-图书
POST
http://ajax-api.itheima.net/api/books发布图书
请求参数
Body 参数application/json
bookname
string
图书名字
author
string
图书作者
publisher
string
图书出版社
示例
{
"bookname": "爱黑马",
"author": "哎嘿吗",
"publisher": "爱黑马"
}
示例代码
返回响应
成功(200)
参数有误(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
integer
业务状态码
201成功,其他失败
data
object
响应数据
bookname
string
图书名字
author
string
图书作者
publisher
string
图书出版社
id
integer
图书id
msg
string
响应消息
示例成功示例
{
"status": 201,
"data": {
"bookname": "爱黑马",
"author": "哎嘿吗",
"publisher": "爱黑马",
"id": 109
},
"msg": "添加图书成功"
}
最后修改时间: 10 个月前