{
"bookname": "黑马程序员",
"author": "小马",
"publisher": "北京出版社"
}
curl --location --request PUT 'http://ajax-api.itheima.net/api/books/1' \
--header 'Content-Type: application/json' \
--data-raw '{
"bookname": "黑马程序员",
"author": "小马",
"publisher": "北京出版社"
}'
{
"message": "修改图书成功",
"data": {
"id": 1,
"bookname": "黑马程序员",
"author": "小马",
"publisher": "北京出版社",
"createdAt": "2022-06-20T16:21:15.000Z",
"updatedAt": "2022-06-20T16:21:15.000Z"
}
}