{
"bookname": "《黑马程序员》",
"author": "小马",
"publisher": "北京出版社",
"creator": "老李"
}
curl --location --request POST 'https://hmajax.itheima.net/api/books' \
--header 'Content-Type: application/json' \
--data-raw '{
"bookname": "《黑马程序员》",
"author": "小马",
"publisher": "北京出版社",
"creator": "老李"
}'
{
"message": "添加图书成功",
"data": {
"id": 84862,
"bookname": "《黑马程序员》",
"author": "小马",
"publisher": "北京出版社"
}
}