md文件保存实现,修改bookmark的事务问题

This commit is contained in:
simple321vip
2022-04-28 09:25:40 +08:00
parent fff3ee0a3d
commit d24c4ab45d
6 changed files with 111 additions and 57 deletions
+2 -2
View File
@@ -57,14 +57,14 @@ const getContent = (id: string) => {
})
}
const newBlog = (params: Object) => {
const newBlog = (postData: Object) => {
return request({
url: '/author/blog/createContent',
method: 'post',
headers: {
'Content-Type': 'application/json;charsetset=UTF-8'
},
data: params
data: postData
})
}