修改-图书详情
PUT
http://ajax-api.itheima.net/api/books/{id}修改图书详情
请求参数
Path 参数
id
string
图书id
示例值:
1
Body 参数application/json
bookname
string
图书名字
author
string
图书作者
publisher
string
图书出版社
示例
{
"bookname": "黑马程序员",
"author": "小马",
"publisher": "北京出版社"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
message
string
响应消息
data
object
响应数据
id
integer
图书id
bookname
string
图书名字
author
string
图书作者
publisher
string
图书出版社
createdAt
string
图书创建时间
updatedAt
string
图书更新时间
示例成功示例
{
"message": "修改图书成功",
"data": {
"id": 1,
"bookname": "黑马程序员",
"author": "小马",
"publisher": "北京出版社",
"createdAt": "2022-06-20T16:21:15.000Z",
"updatedAt": "2022-06-20T16:21:15.000Z"
}
}
最后修改时间: 2 年前