新增-图书
POST
http://ajax-api.itheima.net/api/books新增图书
请求参数
Body 参数application/json
bookname
string
新增图书名字
author
string
新增图书作者
publisher
string
新增图书出版社
示例
{
"bookname": "黑马程序员",
"author": "小马",
"publisher": "北京出版社"
}
示例代码
返回响应
成功(201)
参数错误(422)
HTTP 状态码: 201
内容格式: JSONapplication/json
数据结构
message
string
响应消息
data
object
响应对象
id
integer
图书id
bookname
string
图书名字
author
string
图书作者
publisher
string
图书出版社
updatedAt
string
图书更新时间
createdAt
string
图书发布时间
示例成功示例
{
"message": "添加图书成功",
"data": {
"id": 1,
"bookname": "黑马程序员",
"author": "小马",
"publisher": "北京出版社",
"updatedAt": "2022-06-20T14:19:27.150Z",
"createdAt": "2022-06-20T14:19:27.150Z"
}
}
最后修改时间: 2 年前